Interface CfnEndpointGroup.EndpointConfigurationProperty

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

@Stability(Stable) public static interface CfnEndpointGroup.EndpointConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A complex type for endpoints.

A resource must be valid and active when you add it as an endpoint.

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.globalaccelerator.*;
 EndpointConfigurationProperty endpointConfigurationProperty = EndpointConfigurationProperty.builder()
         .endpointId("endpointId")
         // the properties below are optional
         .attachmentArn("attachmentArn")
         .clientIpPreservationEnabled(false)
         .weight(123)
         .build();
 

See Also: