interface CfnClusterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryControl.Mixins.CfnClusterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoverycontrol/mixins#CfnClusterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53recoverycontrol.mixins.CfnClusterMixinProps |
Python | aws_cdk.mixins_preview.aws_route53recoverycontrol.mixins.CfnClusterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoverycontrol » mixins » CfnClusterMixinProps |
Properties for CfnClusterPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53recoverycontrol_mixins } from '@aws-cdk/mixins-preview/aws-route53recoverycontrol';
const cfnClusterMixinProps: route53recoverycontrol_mixins.CfnClusterMixinProps = {
name: 'name',
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
(optional)
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