Class: Aws::EKS::Types::DeleteAddonRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-eks/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#addon_nameString

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

Returns:



3020
3021
3022
3023
3024
3025
3026
# File 'lib/aws-sdk-eks/types.rb', line 3020

class DeleteAddonRequest < Struct.new(
  :cluster_name,
  :addon_name,
  :preserve)
  SENSITIVE = []
  include Aws::Structure
end

#cluster_nameString

The name of your cluster.

Returns:



3020
3021
3022
3023
3024
3025
3026
# File 'lib/aws-sdk-eks/types.rb', line 3020

class DeleteAddonRequest < Struct.new(
  :cluster_name,
  :addon_name,
  :preserve)
  SENSITIVE = []
  include Aws::Structure
end

#preserveBoolean

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.

Returns:



3020
3021
3022
3023
3024
3025
3026
# File 'lib/aws-sdk-eks/types.rb', line 3020

class DeleteAddonRequest < Struct.new(
  :cluster_name,
  :addon_name,
  :preserve)
  SENSITIVE = []
  include Aws::Structure
end