Class: Aws::EKS::Types::ListClustersResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#clustersArray<String>

A list of all of the clusters for your account in the specified Amazon Web Services Region.

Returns:

  • (Array<String>)


4234
4235
4236
4237
4238
4239
# File 'lib/aws-sdk-eks/types.rb', line 4234

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

#next_tokenString

The ‘nextToken` value returned from a previous paginated request, where `maxResults` was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the `nextToken` value. This value is null when there are no more results to return.

<note markdown=“1”> This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

</note>

Returns:

  • (String)


4234
4235
4236
4237
4238
4239
# File 'lib/aws-sdk-eks/types.rb', line 4234

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