Show / Hide Table of Contents

Class CfnSecurityGroupMixinProps

Properties for CfnSecurityGroupPropsMixin.

Inheritance
object
CfnSecurityGroupMixinProps
Implements
ICfnSecurityGroupMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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.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

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.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

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

ICfnSecurityGroupMixinProps
Back to top Generated by DocFX