Class: Aws::ElasticLoadBalancing::Types::DeregisterEndPointsInput

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

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

Contains the parameters for DeregisterInstancesFromLoadBalancer.

Instance Attribute Summary collapse

Instance Attribute Details

#instancesArray<Types::Instance>

The IDs of the instances.

Returns:



802
803
804
805
806
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 802

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

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


802
803
804
805
806
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 802

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