Class CfnSecurityGroupMixinProps
Properties for CfnSecurityGroupPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnSecurityGroupMixinProps : ICfnSecurityGroupMixinProps
Syntax (vb)
Public Class CfnSecurityGroupMixinProps Implements ICfnSecurityGroupMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins;
var cfnSecurityGroupMixinProps = new CfnSecurityGroupMixinProps {
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnSecurityGroupMixinProps() | Properties for CfnSecurityGroupPropsMixin. |
Properties
| Description | A description for the cache security group. |
| Tags | A tag that can be added to an ElastiCache security group. |
Constructors
CfnSecurityGroupMixinProps()
Properties for CfnSecurityGroupPropsMixin.
public CfnSecurityGroupMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins;
var cfnSecurityGroupMixinProps = new CfnSecurityGroupMixinProps {
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
Description
A description for the cache security group.
public string? Description { get; set; }
Property Value
Remarks
Tags
A tag that can be added to an ElastiCache security group.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
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.