Class: Aws::ECS::Types::ListTasksResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ListTasksResponse
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The
nextToken
value to include in a futureListTasks
request. -
#task_arns ⇒ Array<String>
The list of task ARN entries for the
ListTasks
request.
Instance Attribute Details
#next_token ⇒ String
The nextToken
value to include in a future ListTasks
request.
When the results of a ListTasks
request exceed maxResults
, this
value can be used to retrieve the next page of results. This value
is null
when there are no more results to return.
6171 6172 6173 6174 6175 6176 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6171 class ListTasksResponse < Struct.new( :task_arns, :next_token) SENSITIVE = [] include Aws::Structure end |
#task_arns ⇒ Array<String>
The list of task ARN entries for the ListTasks
request.
6171 6172 6173 6174 6175 6176 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6171 class ListTasksResponse < Struct.new( :task_arns, :next_token) SENSITIVE = [] include Aws::Structure end |