Class: Aws::ElasticLoadBalancing::Types::ApplySecurityGroupsToLoadBalancerInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancing::Types::ApplySecurityGroupsToLoadBalancerInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancing/types.rb
Overview
Contains the parameters for ApplySecurityGroupsToLoadBalancer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#load_balancer_name ⇒ String
The name of the load balancer.
-
#security_groups ⇒ Array<String>
The IDs of the security groups to associate with the load balancer.
Instance Attribute Details
#load_balancer_name ⇒ String
The name of the load balancer.
175 176 177 178 179 180 |
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 175 class ApplySecurityGroupsToLoadBalancerInput < Struct.new( :load_balancer_name, :security_groups) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
The IDs of the security groups to associate with the load balancer. Note that you cannot specify the name of the security group.
175 176 177 178 179 180 |
# File 'lib/aws-sdk-elasticloadbalancing/types.rb', line 175 class ApplySecurityGroupsToLoadBalancerInput < Struct.new( :load_balancer_name, :security_groups) SENSITIVE = [] include Aws::Structure end |