Show / Hide Table of Contents

Class CfnSecurityGroupProps

Properties for defining a CfnSecurityGroup.

Inheritance
object
CfnSecurityGroupProps
Implements
ICfnSecurityGroupProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSecurityGroupProps : ICfnSecurityGroupProps
Syntax (vb)
Public Class CfnSecurityGroupProps Implements 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

Constructors

CfnSecurityGroupProps()

Properties for defining a CfnSecurityGroup.

Properties

Description

A description for the cache security group.

Tags

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

Constructors

CfnSecurityGroupProps()

Properties for defining a CfnSecurityGroup.

public CfnSecurityGroupProps()
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"
                 } }
             };

Properties

Description

A description for the cache security group.

public string Description { get; set; }
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.

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.

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

Implements

ICfnSecurityGroupProps
Back to top Generated by DocFX