Class: Aws::EKS::Types::AddonNamespaceConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::AddonNamespaceConfigRequest
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
The namespace configuration request object for specifying a custom namespace when creating an addon.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#namespace ⇒ String
The name of the Kubernetes namespace to install the addon in.
Instance Attribute Details
#namespace ⇒ String
The name of the Kubernetes namespace to install the addon in. Must be a valid RFC 1123 DNS label.
413 414 415 416 417 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 413 class AddonNamespaceConfigRequest < Struct.new( :namespace) SENSITIVE = [] include Aws::Structure end |