interface CfnSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MemoryDB.Mixins.CfnSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmemorydb/mixins#CfnSubnetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.memorydb.mixins.CfnSubnetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_memorydb.mixins.CfnSubnetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_memorydb » mixins » CfnSubnetGroupMixinProps |
Properties for CfnSubnetGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-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 memorydb_mixins } from '@aws-cdk/mixins-preview/aws-memorydb';
const cfnSubnetGroupMixinProps: memorydb_mixins.CfnSubnetGroupMixinProps = {
description: 'description',
subnetGroupName: 'subnetGroupName',
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the subnet group. |
| subnet | string | The name of the subnet group to be used for the cluster . |
| subnet | string[] | A list of Amazon VPC subnet IDs for the subnet group. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
A description of the subnet group.
subnetGroupName?
Type:
string
(optional)
The name of the subnet group to be used for the cluster .
subnetIds?
Type:
string[]
(optional)
A list of Amazon VPC subnet IDs for the subnet group.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript