Class: Aws::EKS::Types::ListNodegroupsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListNodegroupsResponse
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The
nextToken
value to include in a futureListNodegroups
request. -
#nodegroups ⇒ Array<String>
A list of all of the node groups associated with the specified cluster.
Instance Attribute Details
#next_token ⇒ String
The nextToken
value to include in a future ListNodegroups
request. When the results of a ListNodegroups
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.
2597 2598 2599 2600 2601 2602 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 2597 class ListNodegroupsResponse < Struct.new( :nodegroups, :next_token) SENSITIVE = [] include Aws::Structure end |
#nodegroups ⇒ Array<String>
A list of all of the node groups associated with the specified cluster.
2597 2598 2599 2600 2601 2602 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 2597 class ListNodegroupsResponse < Struct.new( :nodegroups, :next_token) SENSITIVE = [] include Aws::Structure end |