Class: Aws::EKS::Types::ListClustersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListClustersResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#clusters ⇒ Array<String>
A list of all of the clusters for your account in the specified Region.
-
#next_token ⇒ String
The `nextToken` value to include in a future `ListClusters` request.
Instance Attribute Details
#clusters ⇒ Array<String>
A list of all of the clusters for your account in the specified Region.
2251 2252 2253 2254 2255 2256 |
# File 'lib/aws-sdk-eks/types.rb', line 2251 class ListClustersResponse < Struct.new( :clusters, :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`, you can use this value to retrieve the next page of results. This value is `null` when there are no more results to return.
2251 2252 2253 2254 2255 2256 |
# File 'lib/aws-sdk-eks/types.rb', line 2251 class ListClustersResponse < Struct.new( :clusters, :next_token) SENSITIVE = [] include Aws::Structure end |