Class: Aws::EKS::Types::ListAddonsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListAddonsResponse
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#addons ⇒ Array<String>
A list of installed add-ons.
-
#next_token ⇒ String
The
nextTokenvalue to include in a futureListAddonsrequest.
Instance Attribute Details
#addons ⇒ Array<String>
A list of installed add-ons.
5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5143 class ListAddonsResponse < Struct.new( :addons, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
5143 5144 5145 5146 5147 5148 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 5143 class ListAddonsResponse < Struct.new( :addons, :next_token) SENSITIVE = [] include Aws::Structure end |