package awsdax // Properties for defining a `CfnSubnetGroup`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnSubnetGroupProps := &CfnSubnetGroupProps{ // SubnetIds: []*string{ // jsii.String("subnetIds"), // }, // // // the properties below are optional // Description: jsii.String("description"), // SubnetGroupName: jsii.String("subnetGroupName"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html // type CfnSubnetGroupProps struct { // A list of VPC subnet IDs for the subnet group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetids // SubnetIds *[]*string `field:"required" json:"subnetIds" yaml:"subnetIds"` // The description of the subnet group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-description // Description *string `field:"optional" json:"description" yaml:"description"` // The name of the subnet group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetgroupname // SubnetGroupName *string `field:"optional" json:"subnetGroupName" yaml:"subnetGroupName"` }