Class: Aws::ElasticLoadBalancing::Types::DescribeEndPointStateInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticloadbalancing/types.rb

Overview

Note:

When making an API call, you may pass DescribeEndPointStateInput data as a hash:

{
  load_balancer_name: "AccessPointName", # required
  instances: [
    {
      instance_id: "InstanceId",
    },
  ],
}

Contains the parameters for DescribeInstanceHealth.

Instance Attribute Summary collapse

Instance Attribute Details

#instancesArray<Types::Instance>

The IDs of the instances.

Returns:



940
941
942
943
944
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 940

class DescribeEndPointStateInput < Struct.new(
  :load_balancer_name,
  :instances)
  include Aws::Structure
end

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


940
941
942
943
944
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 940

class DescribeEndPointStateInput < Struct.new(
  :load_balancer_name,
  :instances)
  include Aws::Structure
end