Class: Aws::EKS::Types::DeleteAddonRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::DeleteAddonRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #addon_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the add-on.
 - 
  
    
      #cluster_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of your cluster.
 - 
  
    
      #preserve  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on.
 
Instance Attribute Details
#addon_name ⇒ String
The name of the add-on. The name must match one of the names returned by [ ‘ListAddons` ][1].
[1]: docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
      2023 2024 2025 2026 2027 2028 2029  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2023 class DeleteAddonRequest < Struct.new( :cluster_name, :addon_name, :preserve) SENSITIVE = [] include Aws::Structure end  | 
  
#cluster_name ⇒ String
The name of your cluster.
      2023 2024 2025 2026 2027 2028 2029  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2023 class DeleteAddonRequest < Struct.new( :cluster_name, :addon_name, :preserve) SENSITIVE = [] include Aws::Structure end  | 
  
#preserve ⇒ Boolean
Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM account is associated with the add-on, it isn’t removed.
      2023 2024 2025 2026 2027 2028 2029  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2023 class DeleteAddonRequest < Struct.new( :cluster_name, :addon_name, :preserve) SENSITIVE = [] include Aws::Structure end  |