ApplicationState constructor

const ApplicationState({
  1. Input<String?>? applicationId,
  2. Input<String?>? arn,
  3. Input<String?>? computePlatform,
  4. Input<String?>? githubAccountName,
  5. Input<bool?>? linkedToGithub,
  6. Input<String?>? name,
  7. Input<String?>? region,
  8. Input<Map<String, String>?>? tags,
  9. Input<Map<String, String>?>? tagsAll,
})

Creates a new ApplicationState. applicationId The application ID. arn The ARN of the CodeDeploy application. computePlatform The compute platform can either be ECS, Lambda, or Server. Default is Server. githubAccountName The name for a connection to a GitHub account. linkedToGithub Whether the user has authenticated with GitHub for the specified application. name The name of the application. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. 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 A map of tags assigned to the resource, including those inherited from the provider defaultTags configuration block.

Implementation

const ApplicationState({
  this.applicationId,
  this.arn,
  this.computePlatform,
  this.githubAccountName,
  this.linkedToGithub,
  this.name,
  this.region,
  this.tags,
  this.tagsAll,
});