Interface CfnCluster.ClusterEndpointProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.ClusterEndpointProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.ClusterEndpointProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.route53recoverycontrol.*;
 ClusterEndpointProperty clusterEndpointProperty = ClusterEndpointProperty.builder()
         .endpoint("endpoint")
         .region("region")
         .build();
 

See Also: