interface CfnSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MemoryDB.CfnSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmemorydb#CfnSubnetGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.memorydb.CfnSubnetGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_memorydb.CfnSubnetGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_memorydb » 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 { aws_memorydb as memorydb } from '@aws-cdk/cfn-property-mixins';
const cfnSubnetGroupMixinProps: memorydb.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 | ISubnet)[] | 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 | ISubnet)[]
(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