Class: Aws::EKS::Types::DescribeAddonVersionsResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::DescribeAddonVersionsResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #addons  ⇒ Array<Types::AddonInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of available versions with Kubernetes version compatibility and other properties.
 - 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ‘nextToken` value to include in a future `DescribeAddonVersions` request.
 
Instance Attribute Details
#addons ⇒ Array<Types::AddonInfo>
The list of available versions with Kubernetes version compatibility and other properties.
      2496 2497 2498 2499 2500 2501  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2496 class DescribeAddonVersionsResponse < Struct.new( :addons, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#next_token ⇒ String
The ‘nextToken` value to include in a future `DescribeAddonVersions` request. When the results of a `DescribeAddonVersions` 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>
  
      2496 2497 2498 2499 2500 2501  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2496 class DescribeAddonVersionsResponse < Struct.new( :addons, :next_token) SENSITIVE = [] include Aws::Structure end  |