Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-securitygroup.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-securitygroup.html#cfn-elasticache-securitygroup-description

Tags

A tag that can be added to an ElastiCache security group.

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-securitygroup.html#cfn-elasticache-securitygroup-tags

Back to top Generated by DocFX