Class: Aws::ElasticLoadBalancing::Types::DetachLoadBalancerFromSubnetsInput

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

{
  load_balancer_name: "AccessPointName", # required
  subnets: ["SubnetId"], # required
}

Contains the parameters for DetachLoadBalancerFromSubnets.

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


1118
1119
1120
1121
1122
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1118

class DetachLoadBalancerFromSubnetsInput < Struct.new(
  :load_balancer_name,
  :subnets)
  include Aws::Structure
end

#subnetsArray<String>

The IDs of the subnets.

Returns:

  • (Array<String>)


1118
1119
1120
1121
1122
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1118

class DetachLoadBalancerFromSubnetsInput < Struct.new(
  :load_balancer_name,
  :subnets)
  include Aws::Structure
end