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
2202 2203 2204 2205 2206 2207 2208 |
# File 'lib/aws-sdk-eks/types.rb', line 2202 class DeleteAddonRequest < Struct.new( :cluster_name, :addon_name, :preserve) SENSITIVE = [] include Aws::Structure end |
#cluster_name ⇒ String
The name of your cluster.
2202 2203 2204 2205 2206 2207 2208 |
# File 'lib/aws-sdk-eks/types.rb', line 2202 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.
2202 2203 2204 2205 2206 2207 2208 |
# File 'lib/aws-sdk-eks/types.rb', line 2202 class DeleteAddonRequest < Struct.new( :cluster_name, :addon_name, :preserve) SENSITIVE = [] include Aws::Structure end |