Class: Aws::ECS::Types::ListTaskDefinitionFamiliesResponse

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

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#familiesArray<String>

The list of task definition family names that match the ‘ListTaskDefinitionFamilies` request.

Returns:

  • (Array<String>)


3734
3735
3736
3737
3738
# File 'lib/aws-sdk-ecs/types.rb', line 3734

class ListTaskDefinitionFamiliesResponse < Struct.new(
  :families,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The ‘nextToken` value to include in a future `ListTaskDefinitionFamilies` request. When the results of a `ListTaskDefinitionFamilies` 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)


3734
3735
3736
3737
3738
# File 'lib/aws-sdk-ecs/types.rb', line 3734

class ListTaskDefinitionFamiliesResponse < Struct.new(
  :families,
  :next_token)
  include Aws::Structure
end