Class: Aws::ECS::Types::ServiceRevisionSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ServiceRevisionSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
The information about the number of requested, pending, and running tasks for a service revision.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the service revision.
-
#pending_task_count ⇒ Integer
The number of pending tasks for the service revision.
-
#requested_task_count ⇒ Integer
The number of requested tasks for the service revision.
-
#running_task_count ⇒ Integer
The number of running tasks for the service revision.
Instance Attribute Details
#arn ⇒ String
The ARN of the service revision.
10638 10639 10640 10641 10642 10643 10644 10645 |
# File 'lib/aws-sdk-ecs/types.rb', line 10638 class ServiceRevisionSummary < Struct.new( :arn, :requested_task_count, :running_task_count, :pending_task_count) SENSITIVE = [] include Aws::Structure end |
#pending_task_count ⇒ Integer
The number of pending tasks for the service revision.
10638 10639 10640 10641 10642 10643 10644 10645 |
# File 'lib/aws-sdk-ecs/types.rb', line 10638 class ServiceRevisionSummary < Struct.new( :arn, :requested_task_count, :running_task_count, :pending_task_count) SENSITIVE = [] include Aws::Structure end |
#requested_task_count ⇒ Integer
The number of requested tasks for the service revision.
10638 10639 10640 10641 10642 10643 10644 10645 |
# File 'lib/aws-sdk-ecs/types.rb', line 10638 class ServiceRevisionSummary < Struct.new( :arn, :requested_task_count, :running_task_count, :pending_task_count) SENSITIVE = [] include Aws::Structure end |
#running_task_count ⇒ Integer
The number of running tasks for the service revision.
10638 10639 10640 10641 10642 10643 10644 10645 |
# File 'lib/aws-sdk-ecs/types.rb', line 10638 class ServiceRevisionSummary < Struct.new( :arn, :requested_task_count, :running_task_count, :pending_task_count) SENSITIVE = [] include Aws::Structure end |