ProtectionState constructor

const ProtectionState({
  1. Input<String?>? arn,
  2. Input<String?>? name,
  3. Input<String?>? resourceArn,
  4. Input<Map<String, String>?>? tags,
  5. Input<Map<String, String>?>? tagsAll,
})

Creates a new ProtectionState. arn The ARN of the Protection. name A friendly name for the Protection you are creating. resourceArn ARN of the resource to be protected. 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 ProtectionState({
  this.arn,
  this.name,
  this.resourceArn,
  this.tags,
  this.tagsAll,
});