Interface EndpointGroupProps

All Superinterfaces:
EndpointGroupOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EndpointGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.99.0 (build 8f757e4)", date="2024-06-13T18:49:19.509Z") @Stability(Stable) public interface EndpointGroupProps extends software.amazon.jsii.JsiiSerializable, EndpointGroupOptions
Property of the EndpointGroup.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.globalaccelerator.*;
 IEndpoint endpoint;
 Listener listener;
 EndpointGroupProps endpointGroupProps = EndpointGroupProps.builder()
         .listener(listener)
         // the properties below are optional
         .endpointGroupName("endpointGroupName")
         .endpoints(List.of(endpoint))
         .healthCheckInterval(Duration.minutes(30))
         .healthCheckPath("healthCheckPath")
         .healthCheckPort(123)
         .healthCheckProtocol(HealthCheckProtocol.TCP)
         .healthCheckThreshold(123)
         .portOverrides(List.of(PortOverride.builder()
                 .endpointPort(123)
                 .listenerPort(123)
                 .build()))
         .region("region")
         .trafficDialPercentage(123)
         .build();