interface ClusterEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53RecoveryControl.Mixins.CfnClusterPropsMixin.ClusterEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53recoverycontrol/mixins#CfnClusterPropsMixin_ClusterEndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.route53recoverycontrol.mixins.CfnClusterPropsMixin.ClusterEndpointProperty |
Python | aws_cdk.mixins_preview.aws_route53recoverycontrol.mixins.CfnClusterPropsMixin.ClusterEndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_route53recoverycontrol » mixins » CfnClusterPropsMixin » ClusterEndpointProperty |
A cluster endpoint.
You specify one of the five cluster endpoints, which consists of an endpoint URL and an AWS Region, when you want to get or update a routing control state in the cluster.
For more information, see Code examples in the Amazon Route 53 Application Recovery Controller Developer Guide.
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 clusterEndpointProperty: route53recoverycontrol_mixins.CfnClusterPropsMixin.ClusterEndpointProperty = {
endpoint: 'endpoint',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint? | string | A cluster endpoint URL for one of the five redundant clusters that you specify to set or retrieve a routing control state. |
| region? | string | The AWS Region for a cluster endpoint. |
endpoint?
Type:
string
(optional)
A cluster endpoint URL for one of the five redundant clusters that you specify to set or retrieve a routing control state.
region?
Type:
string
(optional)
The AWS Region for a cluster endpoint.

.NET
Go
Java
Python
TypeScript