Class: Aws::ElasticLoadBalancing::Types::ApplySecurityGroupsToLoadBalancerInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb

Overview

Contains the parameters for ApplySecurityGroupsToLoadBalancer.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#load_balancer_nameString

The name of the load balancer.

Returns:

  • (String)


175
176
177
178
179
180
# File 'gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb', line 175

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

#security_groupsArray<String>

The IDs of the security groups to associate with the load balancer. Note that you cannot specify the name of the security group.

Returns:

  • (Array<String>)


175
176
177
178
179
180
# File 'gems/aws-sdk-elasticloadbalancing/lib/aws-sdk-elasticloadbalancing/types.rb', line 175

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