Class: Aws::ECS::Types::ListTaskDefinitionsResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


6317
6318
6319
6320
6321
6322
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6317

class ListTaskDefinitionsResponse < Struct.new(
  :task_definition_arns,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#task_definition_arnsArray<String>

The list of task definition Amazon Resource Name (ARN) entries for the ListTaskDefinitions request.

Returns:

  • (Array<String>)


6317
6318
6319
6320
6321
6322
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6317

class ListTaskDefinitionsResponse < Struct.new(
  :task_definition_arns,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end