interface CfnSecurityGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnSecurityGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnSecurityGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnSecurityGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnSecurityGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » 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 { aws_elasticache as elasticache } from '@aws-cdk/cfn-property-mixins';
const cfnSecurityGroupMixinProps: elasticache.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