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

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

#cluster_arnsArray<String>

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

Returns:

  • (Array<String>)


5901
5902
5903
5904
5905
5906
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5901

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)


5901
5902
5903
5904
5905
5906
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5901

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