Class: Aws::EKS::Types::ListAddonsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListAddonsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#addons ⇒ Array<String>
A list of available add-ons.
-
#next_token ⇒ String
The `nextToken` value returned from a previous paginated `ListAddonsResponse` where `maxResults` was used and the results exceeded the value of that parameter.
Instance Attribute Details
#addons ⇒ Array<String>
A list of available add-ons.
2189 2190 2191 2192 2193 2194 |
# File 'lib/aws-sdk-eks/types.rb', line 2189 class ListAddonsResponse < Struct.new( :addons, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The `nextToken` value returned from a previous paginated `ListAddonsResponse` 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.
<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>
2189 2190 2191 2192 2193 2194 |
# File 'lib/aws-sdk-eks/types.rb', line 2189 class ListAddonsResponse < Struct.new( :addons, :next_token) SENSITIVE = [] include Aws::Structure end |