Class: Aws::EKS::Types::ListClustersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListClustersResponse
- Defined in:
- gems/aws-sdk-eks/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 Amazon Web Services Region.
-
#next_token ⇒ String
The
nextToken
value returned from a previous paginated request, wheremaxResults
was used and the results exceeded the value of that parameter.
Instance Attribute Details
#clusters ⇒ Array<String>
A list of all of the clusters for your account in the specified Amazon Web Services Region.
4059 4060 4061 4062 4063 4064 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4059 class ListClustersResponse < Struct.new( :clusters, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
4059 4060 4061 4062 4063 4064 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 4059 class ListClustersResponse < Struct.new( :clusters, :next_token) SENSITIVE = [] include Aws::Structure end |