interface CfnSecurityGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnSecurityGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnSecurityGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnSecurityGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnSecurityGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnSecurityGroupMixinProps |
Properties for CfnSecurityGroupPropsMixin.
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 cfnSecurityGroupMixinProps: elasticache_mixins.CfnSecurityGroupMixinProps = {
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description for the cache security group. |
| tags? | Cfn[] | A tag that can be added to an ElastiCache security group. |
description?
Type:
string
(optional)
A description for the cache security group.
tags?
Type:
Cfn[]
(optional)
A tag that can be added to an ElastiCache security group.
Tags are composed of a Key/Value pair. You can use tags to categorize and track all your security groups. A tag with a null Value is permitted.

.NET
Go
Java
Python
TypeScript