Show / Hide Table of Contents

Class CfnSubnetGroupProps

Properties for defining a CfnSubnetGroup.

Inheritance
object
CfnSubnetGroupProps
Implements
ICfnSubnetGroupProps
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.DAX
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSubnetGroupProps : ICfnSubnetGroupProps
Syntax (vb)
Public Class CfnSubnetGroupProps Implements ICfnSubnetGroupProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-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.AWS.DAX;

             var cfnSubnetGroupProps = new CfnSubnetGroupProps {
                 SubnetIds = new [] { "subnetIds" },

                 // the properties below are optional
                 Description = "description",
                 SubnetGroupName = "subnetGroupName"
             };

Synopsis

Constructors

CfnSubnetGroupProps()

Properties for defining a CfnSubnetGroup.

Properties

Description

The description of the subnet group.

SubnetGroupName

The name of the subnet group.

SubnetIds

A list of VPC subnet IDs for the subnet group.

Constructors

CfnSubnetGroupProps()

Properties for defining a CfnSubnetGroup.

public CfnSubnetGroupProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-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.AWS.DAX;

             var cfnSubnetGroupProps = new CfnSubnetGroupProps {
                 SubnetIds = new [] { "subnetIds" },

                 // the properties below are optional
                 Description = "description",
                 SubnetGroupName = "subnetGroupName"
             };

Properties

Description

The description of the subnet group.

public string? Description { get; set; }
Property Value

string

Remarks

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

SubnetGroupName

The name of the subnet group.

public string? SubnetGroupName { get; set; }
Property Value

string

Remarks

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

SubnetIds

A list of VPC subnet IDs for the subnet group.

public string[] SubnetIds { get; set; }
Property Value

string[]

Remarks

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

Implements

ICfnSubnetGroupProps
Back to top Generated by DocFX