CfnSubnetGroupMixinProps
- class aws_cdk.mixins_preview.aws_memorydb.mixins.CfnSubnetGroupMixinProps(*, description=None, subnet_group_name=None, subnet_ids=None, tags=None)
Bases:
objectProperties for CfnSubnetGroupPropsMixin.
- Parameters:
description (
Optional[str]) – A description of the subnet group.subnet_group_name (
Optional[str]) – The name of the subnet group to be used for the cluster .subnet_ids (
Optional[Sequence[str]]) – A list of Amazon VPC subnet IDs for the subnet group.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-subnetgroup.html
- 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_memorydb import mixins as memorydb_mixins cfn_subnet_group_mixin_props = memorydb_mixins.CfnSubnetGroupMixinProps( description="description", subnet_group_name="subnetGroupName", subnet_ids=["subnetIds"], tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the subnet group.
- subnet_group_name
The name of the subnet group to be used for the cluster .
- subnet_ids
A list of Amazon VPC subnet IDs for the subnet group.