Class: Aws::EC2::Types::LoadBalancersConfig

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

Overview

Note:

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

{
  classic_load_balancers_config: {
    classic_load_balancers: [
      {
        name: "String",
      },
    ],
  },
  target_groups_config: {
    target_groups: [
      {
        arn: "String",
      },
    ],
  },
}

Describes the Classic Load Balancers and target groups to attach to a Spot Fleet request.

Instance Attribute Summary collapse

Instance Attribute Details

#classic_load_balancers_configTypes::ClassicLoadBalancersConfig

The Classic Load Balancers.



24951
24952
24953
24954
24955
# File 'lib/aws-sdk-ec2/types.rb', line 24951

class LoadBalancersConfig < Struct.new(
  :classic_load_balancers_config,
  :target_groups_config)
  include Aws::Structure
end

#target_groups_configTypes::TargetGroupsConfig

The target groups.



24951
24952
24953
24954
24955
# File 'lib/aws-sdk-ec2/types.rb', line 24951

class LoadBalancersConfig < Struct.new(
  :classic_load_balancers_config,
  :target_groups_config)
  include Aws::Structure
end