Interface CfnClusterPropsMixin.EndpointProperty

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

@Stability(Stable) public static interface CfnClusterPropsMixin.EndpointProperty extends software.amazon.jsii.JsiiSerializable
An endpoint available for interaction with the scheduler.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.pcs.mixins.*;
 EndpointProperty endpointProperty = EndpointProperty.builder()
         .ipv6Address("ipv6Address")
         .port("port")
         .privateIpAddress("privateIpAddress")
         .publicIpAddress("publicIpAddress")
         .type("type")
         .build();
 

See Also: