Class: Aws::ECS::Types::ListClustersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::ListClustersResponse
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_arns ⇒ Array<String>
The list of full Amazon Resource Name (ARN) entries for each cluster that's associated with your account.
-
#next_token ⇒ String
The
nextToken
value to include in a futureListClusters
request.
Instance Attribute Details
#cluster_arns ⇒ Array<String>
The list of full Amazon Resource Name (ARN) entries for each cluster that's associated with your account.
5820 5821 5822 5823 5824 5825 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5820 class ListClustersResponse < Struct.new( :cluster_arns, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
value to include in a future ListClusters
request.
When the results of a ListClusters
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.
5820 5821 5822 5823 5824 5825 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5820 class ListClustersResponse < Struct.new( :cluster_arns, :next_token) SENSITIVE = [] include Aws::Structure end |