CfnClusterSubnetGroupMixinProps
- class aws_cdk.cfn_property_mixins.aws_redshift.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[Union[str,ISubnetRef]]]) – 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:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_redshift as redshift cfn_cluster_subnet_group_mixin_props = redshift.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.