CfnSubnetGroupProps
- class aws_cdk.aws_dax.CfnSubnetGroupProps(*, subnet_ids, description=None, subnet_group_name=None)
Bases:
object
Properties for defining a
CfnSubnetGroup
.- Parameters:
subnet_ids (
Sequence
[str
]) – A list of VPC subnet IDs for the subnet group.description (
Optional
[str
]) – The description of the subnet group.subnet_group_name (
Optional
[str
]) – The name of 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 import aws_dax as dax cfn_subnet_group_props = dax.CfnSubnetGroupProps( subnet_ids=["subnetIds"], # the properties below are optional description="description", subnet_group_name="subnetGroupName" )
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.