SubnetGroupState constructor

const SubnetGroupState({
  1. Input<String?>? arn,
  2. Input<String?>? description,
  3. Input<String?>? name,
  4. Input<String?>? namePrefix,
  5. Input<String?>? region,
  6. Input<List<String>?>? subnetIds,
  7. Input<Map<String, String>?>? tags,
  8. Input<Map<String, String>?>? tagsAll,
  9. Input<String?>? vpcId,
})

Creates a new SubnetGroupState. arn The ARN of the subnet group. description Description for the subnet group. Defaults to "Managed by Pulumi". name Name of the subnet group. If omitted, the provider will assign a random, unique name. Conflicts with namePrefix. namePrefix Creates a unique name beginning with the specified prefix. Conflicts with name. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. subnetIds Set of VPC Subnet ID-s for the subnet group. At least one subnet must be provided. tags A map of tags to assign to the resource. 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. vpcId The VPC in which the subnet group exists.

Implementation

const SubnetGroupState({
  this.arn,
  this.description,
  this.name,
  this.namePrefix,
  this.region,
  this.subnetIds,
  this.tags,
  this.tagsAll,
  this.vpcId,
});