Class: Aws::ElasticLoadBalancingV2::Types::SetSecurityGroupsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::SetSecurityGroupsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass SetSecurityGroupsInput data as a hash:
{
load_balancer_arn: "LoadBalancerArn", # required
security_groups: ["SecurityGroupId"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#load_balancer_arn ⇒ String
The Amazon Resource Name (ARN) of the load balancer.
-
#security_groups ⇒ Array<String>
The IDs of the security groups.
Instance Attribute Details
#load_balancer_arn ⇒ String
The Amazon Resource Name (ARN) of the load balancer.
3640 3641 3642 3643 3644 3645 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3640 class SetSecurityGroupsInput < Struct.new( :load_balancer_arn, :security_groups) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
The IDs of the security groups.
3640 3641 3642 3643 3644 3645 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3640 class SetSecurityGroupsInput < Struct.new( :load_balancer_arn, :security_groups) SENSITIVE = [] include Aws::Structure end |