Class: Aws::ElasticLoadBalancingV2::Types::SetSecurityGroupsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::SetSecurityGroupsInput
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/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.
3658 3659 3660 3661 3662 3663 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3658 class SetSecurityGroupsInput < Struct.new( :load_balancer_arn, :security_groups) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
The IDs of the security groups.
3658 3659 3660 3661 3662 3663 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3658 class SetSecurityGroupsInput < Struct.new( :load_balancer_arn, :security_groups) SENSITIVE = [] include Aws::Structure end |