ProtectionArgs constructor

const ProtectionArgs({
  1. Input<String?>? name,
  2. required Input<String> resourceArn,
  3. Input<Map<String, String>?>? tags,
})

Creates a new ProtectionArgs. 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.

Implementation

const ProtectionArgs({
  this.name,
  required this.resourceArn,
  this.tags,
});