Show / Hide Table of Contents

Interface ICfnSubnetGroupMixinProps

Properties for CfnSubnetGroupPropsMixin.

Namespace: Amazon.CDK.Mixins.Preview.AWS.MemoryDB.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnSubnetGroupMixinProps
Syntax (vb)
Public Interface ICfnSubnetGroupMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-subnetgroup.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.MemoryDB.Mixins;

             var cfnSubnetGroupMixinProps = new CfnSubnetGroupMixinProps {
                 Description = "description",
                 SubnetGroupName = "subnetGroupName",
                 SubnetIds = new [] { "subnetIds" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Description

A description of the subnet group.

SubnetGroupName

The name of the subnet group to be used for the cluster .

SubnetIds

A list of Amazon VPC subnet IDs for the subnet group.

Tags

An array of key-value pairs to apply to this resource.

Properties

Description

A description of the subnet group.

string? Description { get; }
Property Value

string

Remarks

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

SubnetGroupName

The name of the subnet group to be used for the cluster .

string? SubnetGroupName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-subnetgroup.html#cfn-memorydb-subnetgroup-subnetgroupname

SubnetIds

A list of Amazon VPC subnet IDs for the subnet group.

string[]? SubnetIds { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-subnetgroup.html#cfn-memorydb-subnetgroup-subnetids

Tags

An array of key-value pairs to apply to this resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

For more information, see Tag .

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

Back to top Generated by DocFX