Class: Aws::ECS::Types::ListClustersResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_arnsArray<String>

The list of full Amazon Resource Name (ARN) entries for each cluster that’s associated with your account.

Returns:

  • (Array<String>)


5891
5892
5893
5894
5895
5896
# File 'lib/aws-sdk-ecs/types.rb', line 5891

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

#next_tokenString

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.

Returns:

  • (String)


5891
5892
5893
5894
5895
5896
# File 'lib/aws-sdk-ecs/types.rb', line 5891

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