Class: Aws::ECS::Types::ListTaskDefinitionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ListTaskDefinitionsResponse
- Includes:
- Structure
- Defined in:
- 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 future `ListTaskDefinitions` request.
-
#task_definition_arns ⇒ Array<String>
The list of task definition Amazon Resource Name (ARN) entries for the ‘ListTaskDefinitions` request.
Instance Attribute Details
#next_token ⇒ String
The ‘nextToken` value to include in a future `ListTaskDefinitions` request. When the results of a `ListTaskDefinitions` 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.
6521 6522 6523 6524 6525 6526 |
# File 'lib/aws-sdk-ecs/types.rb', line 6521 class ListTaskDefinitionsResponse < Struct.new( :task_definition_arns, :next_token) SENSITIVE = [] include Aws::Structure end |
#task_definition_arns ⇒ Array<String>
The list of task definition Amazon Resource Name (ARN) entries for the ‘ListTaskDefinitions` request.
6521 6522 6523 6524 6525 6526 |
# File 'lib/aws-sdk-ecs/types.rb', line 6521 class ListTaskDefinitionsResponse < Struct.new( :task_definition_arns, :next_token) SENSITIVE = [] include Aws::Structure end |