interface CfnSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DAX.Mixins.CfnSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdax/mixins#CfnSubnetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.dax.mixins.CfnSubnetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_dax.mixins.CfnSubnetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_dax » mixins » 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 { mixins as dax_mixins } from '@aws-cdk/mixins-preview/aws-dax';
const cfnSubnetGroupMixinProps: dax_mixins.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