Class: Aws::EKS::Types::ListAddonsResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#addonsArray<String>

A list of installed add-ons.

Returns:

  • (Array<String>)


3697
3698
3699
3700
3701
3702
# File 'lib/aws-sdk-eks/types.rb', line 3697

class ListAddonsResponse < Struct.new(
  :addons,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The ‘nextToken` value to include in a future `ListAddons` request. When the results of a `ListAddons` 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.

<note markdown=“1”> This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

</note>

Returns:

  • (String)


3697
3698
3699
3700
3701
3702
# File 'lib/aws-sdk-eks/types.rb', line 3697

class ListAddonsResponse < Struct.new(
  :addons,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end