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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


1192
1193
1194
1195
1196
1197
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1192

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

#subnetsArray<String>

The IDs of the subnets.

Returns:

  • (Array<String>)


1192
1193
1194
1195
1196
1197
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 1192

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