Interface CfnEndpointGroup.EndpointConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointGroup.EndpointConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnEndpointGroup
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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEndpointGroup.EndpointConfigurationProperty
static final class
An implementation forCfnEndpointGroup.EndpointConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The Amazon Resource Name (ARN) of the cross-account attachment that specifies the endpoints (resources) that can be added to accelerators and principals that have permission to add the endpoints.default Object
Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint.An ID for the endpoint.default Number
The weight associated with the endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpointId
An ID for the endpoint.If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID. A resource must be valid and active when you add it as an endpoint.
For cross-account endpoints, this must be the ARN of the resource.
- See Also:
-
getAttachmentArn
The Amazon Resource Name (ARN) of the cross-account attachment that specifies the endpoints (resources) that can be added to accelerators and principals that have permission to add the endpoints.- See Also:
-
getClientIpPreservationEnabled
Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint.The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client's IP address is preserved in the
X-Forwarded-For
request header as traffic travels to applications on the Application Load Balancer endpoint fronted by the accelerator.For more information, see Preserve Client IP Addresses in the AWS Global Accelerator Developer Guide .
Default: - true
- See Also:
-
getWeight
The weight associated with the endpoint.When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint Weights in the AWS Global Accelerator Developer Guide .
Default: - 100
- See Also:
-
builder
-