Class: Aws::EKS::Types::ListNodegroupsResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


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

#nodegroupsArray<String>

A list of all of the node groups associated with the specified cluster.

Returns:

  • (Array<String>)


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