interface CfnSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DAX.CfnSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdax#CfnSubnetGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.dax.CfnSubnetGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_dax.CfnSubnetGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dax » CfnSubnetGroupMixinProps |
Properties for CfnSubnetGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dax as dax } from '@aws-cdk/cfn-property-mixins';
const cfnSubnetGroupMixinProps: dax.CfnSubnetGroupMixinProps = {
description: 'description',
subnetGroupName: 'subnetGroupName',
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the subnet group. |
| subnet | string | The name of the subnet group. |
| subnet | string[] | A list of VPC subnet IDs for the subnet group. |
description?
Type:
string
(optional)
The description of the subnet group.
subnetGroupName?
Type:
string
(optional)
The name of the subnet group.
subnetIds?
Type:
string[]
(optional)
A list of VPC subnet IDs for the subnet group.

.NET
Go
Java
Python
TypeScript