Class: Aws::ElasticLoadBalancing::Types::RegisterEndPointsInput

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 RegisterEndPointsInput data as a hash:

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

Contains the parameters for RegisterInstancesWithLoadBalancer.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#instancesArray<Types::Instance>

The IDs of the instances.

Returns:



2054
2055
2056
2057
2058
2059
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 2054

class RegisterEndPointsInput < Struct.new(
  :load_balancer_name,
  :instances)
  SENSITIVE = []
  include Aws::Structure
end

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


2054
2055
2056
2057
2058
2059
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 2054

class RegisterEndPointsInput < Struct.new(
  :load_balancer_name,
  :instances)
  SENSITIVE = []
  include Aws::Structure
end