Class CfnEipEndpoint
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.globalaccelerator.endpoints.CfnEipEndpoint
- All Implemented Interfaces:
IEndpoint
,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:44.046Z")
@Stability(Stable)
public class CfnEipEndpoint
extends software.amazon.jsii.JsiiObject
implements IEndpoint
Use an EC2 Instance as a Global Accelerator Endpoint.
Example:
Listener listener; CfnEIP eip; listener.addEndpointGroup("Group", EndpointGroupOptions.builder() .endpoints(List.of( CfnEipEndpoint.Builder.create(eip) .weight(128) .build())) .build());
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.globalaccelerator.IEndpoint
IEndpoint.Jsii$Default, IEndpoint.Jsii$Proxy
-
Constructor Summary
ModifierConstructorDescriptionCfnEipEndpoint
(CfnEIP eip) CfnEipEndpoint
(CfnEIP eip, CfnEipEndpointProps options) protected
CfnEipEndpoint
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnEipEndpoint
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe region where the endpoint is located.Render the endpoint to an endpoint configuration.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
CfnEipEndpoint
protected CfnEipEndpoint(software.amazon.jsii.JsiiObjectRef objRef) -
CfnEipEndpoint
protected CfnEipEndpoint(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnEipEndpoint
@Stability(Stable) public CfnEipEndpoint(@NotNull CfnEIP eip, @Nullable CfnEipEndpointProps options) - Parameters:
eip
- This parameter is required.options
-
-
CfnEipEndpoint
- Parameters:
eip
- This parameter is required.
-
-
Method Details
-
renderEndpointConfiguration
Render the endpoint to an endpoint configuration.- Specified by:
renderEndpointConfiguration
in interfaceIEndpoint
-
getRegion
The region where the endpoint is located.If the region cannot be determined,
undefined
is returned
-