Class CfnSubnetGroupProps
Properties for defining a CfnSubnetGroup
.
Implements
Inherited Members
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 |
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
Remarks
SubnetGroupName
The name of the subnet group.
public string? SubnetGroupName { get; set; }
Property Value
Remarks
SubnetIds
A list of VPC subnet IDs for the subnet group.
public string[] SubnetIds { get; set; }
Property Value
string[]