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
nextTokenvalue returned from a previous paginated request, wheremaxResultswas used and the results exceeded the value of that parameter. -
#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 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.
5684 5685 5686 5687 5688 5689 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5684 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.
5684 5685 5686 5687 5688 5689 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5684 class ListNodegroupsResponse < Struct.new( :nodegroups, :next_token) SENSITIVE = [] include Aws::Structure end |