CfnClusterSubnetGroupMixinProps
- class aws_cdk.mixins_preview.aws_redshift.mixins.CfnClusterSubnetGroupMixinProps(*, description=None, subnet_ids=None, tags=None)
Bases:
objectProperties for CfnClusterSubnetGroupPropsMixin.
- Parameters:
description (
Optional[str]) – A description for the subnet group.subnet_ids (
Optional[Sequence[str]]) – An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Specifies an arbitrary set of tags (key–value pairs) to associate with this subnet group. Use tags to manage your resources.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_redshift import mixins as redshift_mixins cfn_cluster_subnet_group_mixin_props = redshift_mixins.CfnClusterSubnetGroupMixinProps( description="description", subnet_ids=["subnetIds"], tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description for the subnet group.
- subnet_ids
An array of VPC subnet IDs.
A maximum of 20 subnets can be modified in a single request.
- tags
Specifies an arbitrary set of tags (key–value pairs) to associate with this subnet group.
Use tags to manage your resources.