ConnectionState constructor

const ConnectionState({
  1. Input<String?>? arn,
  2. Input<String?>? connectionName,
  3. Input<String?>? providerType,
  4. Input<String?>? region,
  5. Input<String?>? status,
  6. Input<Map<String, String>?>? tags,
  7. Input<Map<String, String>?>? tagsAll,
})

Creates a new ConnectionState. arn ARN of the connection. connectionName Name of the connection. providerType Source repository provider. Valid values: GITHUB. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. status Current state of the App Runner connection. When the state is AVAILABLE, you can use the connection to create an aws.apprunner.Service resource. tags Key-value map of resource tags. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level. tagsAll Map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

Implementation

const ConnectionState({
  this.arn,
  this.connectionName,
  this.providerType,
  this.region,
  this.status,
  this.tags,
  this.tagsAll,
});