Class: Aws::ECS::Types::ListTaskDefinitionFamiliesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ListTaskDefinitionFamiliesResponse
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#families ⇒ Array<String>
The list of task definition family names that match the
ListTaskDefinitionFamilies
request. -
#next_token ⇒ String
The
nextToken
value to include in a futureListTaskDefinitionFamilies
request.
Instance Attribute Details
#families ⇒ Array<String>
The list of task definition family names that match the
ListTaskDefinitionFamilies
request.
6458 6459 6460 6461 6462 6463 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6458 class ListTaskDefinitionFamiliesResponse < Struct.new( :families, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
6458 6459 6460 6461 6462 6463 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6458 class ListTaskDefinitionFamiliesResponse < Struct.new( :families, :next_token) SENSITIVE = [] include Aws::Structure end |