Class: Aws::EKS::Types::DescribeUpdateRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::DescribeUpdateRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
Describes an update request.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #addon_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the add-on.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Amazon EKS cluster associated with the update.
 - 
  
    
      #nodegroup_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Amazon EKS node group associated with the update.
 - 
  
    
      #update_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the update to describe.
 
Instance Attribute Details
#addon_name ⇒ String
The name of the add-on. The name must match one of the names returned by [ ‘ListAddons` ][1]. This parameter is required if the update is an add-on update.
[1]: docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
      2724 2725 2726 2727 2728 2729 2730 2731  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2724 class DescribeUpdateRequest < Struct.new( :name, :update_id, :nodegroup_name, :addon_name) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the Amazon EKS cluster associated with the update.
      2724 2725 2726 2727 2728 2729 2730 2731  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2724 class DescribeUpdateRequest < Struct.new( :name, :update_id, :nodegroup_name, :addon_name) SENSITIVE = [] include Aws::Structure end  | 
  
#nodegroup_name ⇒ String
The name of the Amazon EKS node group associated with the update. This parameter is required if the update is a node group update.
      2724 2725 2726 2727 2728 2729 2730 2731  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2724 class DescribeUpdateRequest < Struct.new( :name, :update_id, :nodegroup_name, :addon_name) SENSITIVE = [] include Aws::Structure end  | 
  
#update_id ⇒ String
The ID of the update to describe.
      2724 2725 2726 2727 2728 2729 2730 2731  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2724 class DescribeUpdateRequest < Struct.new( :name, :update_id, :nodegroup_name, :addon_name) SENSITIVE = [] include Aws::Structure end  |