Class: Aws::GlobalAccelerator::Types::EndpointIdentifier

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-globalaccelerator/lib/aws-sdk-globalaccelerator/types.rb

Overview

A complex type for an endpoint. Specifies information about the endpoint to remove from the endpoint group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_ip_preservation_enabledBoolean

Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false.

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 endpoint fronted by the accelerator.

Returns:

  • (Boolean)


2233
2234
2235
2236
2237
2238
# File 'gems/aws-sdk-globalaccelerator/lib/aws-sdk-globalaccelerator/types.rb', line 2233

class EndpointIdentifier < Struct.new(
  :endpoint_id,
  :client_ip_preservation_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#endpoint_idString

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.

An Application Load Balancer can be either internal or internet-facing.

Returns:

  • (String)


2233
2234
2235
2236
2237
2238
# File 'gems/aws-sdk-globalaccelerator/lib/aws-sdk-globalaccelerator/types.rb', line 2233

class EndpointIdentifier < Struct.new(
  :endpoint_id,
  :client_ip_preservation_enabled)
  SENSITIVE = []
  include Aws::Structure
end