CfnSubnetGroupMixinProps
- class aws_cdk.mixins_preview.aws_dax.mixins.CfnSubnetGroupMixinProps(*, description=None, subnet_group_name=None, subnet_ids=None)
Bases:
objectProperties for CfnSubnetGroupPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the subnet group.subnet_group_name (
Optional[str]) – The name of the subnet group.subnet_ids (
Optional[Sequence[str]]) – A list of VPC subnet IDs for the subnet group.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-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_dax import mixins as dax_mixins cfn_subnet_group_mixin_props = dax_mixins.CfnSubnetGroupMixinProps( description="description", subnet_group_name="subnetGroupName", subnet_ids=["subnetIds"] )
Attributes
- description
The description of the subnet group.
- subnet_group_name
The name of the subnet group.
- subnet_ids
A list of VPC subnet IDs for the subnet group.