Class: Aws::SecurityHub::Types::AwsEcsServiceLoadBalancersDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEcsServiceLoadBalancersDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Information about a load balancer that the service uses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_name ⇒ String
The name of the container to associate with the load balancer.
-
#container_port ⇒ Integer
The port on the container to associate with the load balancer.
-
#load_balancer_name ⇒ String
The name of the load balancer to associate with the Amazon ECS service or task set.
-
#target_group_arn ⇒ String
The ARN of the ELB target group or groups associated with a service or task set.
Instance Attribute Details
#container_name ⇒ String
The name of the container to associate with the load balancer.
9946 9947 9948 9949 9950 9951 9952 9953 |
# File 'lib/aws-sdk-securityhub/types.rb', line 9946 class AwsEcsServiceLoadBalancersDetails < Struct.new( :container_name, :container_port, :load_balancer_name, :target_group_arn) SENSITIVE = [] include Aws::Structure end |
#container_port ⇒ Integer
The port on the container to associate with the load balancer. This port must correspond to a ‘containerPort` in the task definition the tasks in the service are using. For tasks that use the EC2 launch type, the container instance they are launched on must allow ingress traffic on the `hostPort` of the port mapping.
9946 9947 9948 9949 9950 9951 9952 9953 |
# File 'lib/aws-sdk-securityhub/types.rb', line 9946 class AwsEcsServiceLoadBalancersDetails < Struct.new( :container_name, :container_port, :load_balancer_name, :target_group_arn) SENSITIVE = [] include Aws::Structure end |
#load_balancer_name ⇒ String
The name of the load balancer to associate with the Amazon ECS service or task set.
Only specified when using a Classic Load Balancer. For an Application Load Balancer or a Network Load Balancer, the load balancer name is omitted.
9946 9947 9948 9949 9950 9951 9952 9953 |
# File 'lib/aws-sdk-securityhub/types.rb', line 9946 class AwsEcsServiceLoadBalancersDetails < Struct.new( :container_name, :container_port, :load_balancer_name, :target_group_arn) SENSITIVE = [] include Aws::Structure end |
#target_group_arn ⇒ String
The ARN of the ELB target group or groups associated with a service or task set.
Only specified when using an Application Load Balancer or a Network Load Balancer. For a Classic Load Balancer, the target group ARN is omitted.
9946 9947 9948 9949 9950 9951 9952 9953 |
# File 'lib/aws-sdk-securityhub/types.rb', line 9946 class AwsEcsServiceLoadBalancersDetails < Struct.new( :container_name, :container_port, :load_balancer_name, :target_group_arn) SENSITIVE = [] include Aws::Structure end |