interface CfnClusterProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53RecoveryControl.CfnClusterProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53recoverycontrol#CfnClusterProps |
Java | software.amazon.awscdk.services.route53recoverycontrol.CfnClusterProps |
Python | aws_cdk.aws_route53recoverycontrol.CfnClusterProps |
TypeScript | aws-cdk-lib » aws_route53recoverycontrol » CfnClusterProps |
Properties for defining a CfnCluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53recoverycontrol as route53recoverycontrol } from 'aws-cdk-lib';
const cfnClusterProps: route53recoverycontrol.CfnClusterProps = {
name: 'name',
// the properties below are optional
networkType: 'networkType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the cluster. |
| network | string | The network-type can either be IPV4 or DUALSTACK. |
| tags? | Cfn[] | The tags associated with the cluster. |
name
Type:
string
Name of the cluster.
You can use any non-white space character in the name except the following: & > < ' (single quote) " (double quote) ; (semicolon).
networkType?
Type:
string
(optional)
The network-type can either be IPV4 or DUALSTACK.
tags?
Type:
Cfn[]
(optional)
The tags associated with the cluster.

.NET
Go
Java
Python
TypeScript