Interface ICfnSecurityGroupProps
Properties for defining a CfnSecurityGroup
.
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnSecurityGroupProps
Syntax (vb)
Public Interface ICfnSecurityGroupProps
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.AWS.ElastiCache;
var cfnSecurityGroupProps = new CfnSecurityGroupProps {
Description = "description",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Description | A description for the cache security group. |
Tags | A tag that can be added to an ElastiCache security group. |
Properties
Description
A description for the cache security group.
string Description { get; }
Property Value
System.String
Remarks
Tags
A tag that can be added to an ElastiCache security group.
virtual ICfnTag[] Tags { get; }
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.