interface CfnSubnetGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnSubnetGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnSubnetGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnSubnetGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnSubnetGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnSubnetGroupMixinProps |
Properties for CfnSubnetGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const cfnSubnetGroupMixinProps: elasticache_mixins.CfnSubnetGroupMixinProps = {
cacheSubnetGroupName: 'cacheSubnetGroupName',
description: 'description',
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cache | string | The name for the cache subnet group. This value is stored as a lowercase string. |
| description? | string | The description for the cache subnet group. |
| subnet | string[] | The EC2 subnet IDs for the cache subnet group. |
| tags? | Cfn[] | A tag that can be added to an ElastiCache subnet group. |
cacheSubnetGroupName?
Type:
string
(optional)
The name for the cache subnet group. This value is stored as a lowercase string.
Constraints: Must contain no more than 255 alphanumeric characters or hyphens.
Example: mysubnetgroup
description?
Type:
string
(optional)
The description for the cache subnet group.
subnetIds?
Type:
string[]
(optional)
The EC2 subnet IDs for the cache subnet group.
tags?
Type:
Cfn[]
(optional)
A tag that can be added to an ElastiCache subnet group.
Tags are composed of a Key/Value pair. You can use tags to categorize and track all your subnet groups. A tag with a null Value is permitted.

.NET
Go
Java
Python
TypeScript