Class: AWSCDK::EMRContainers::CfnVirtualCluster::EKSInfoProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::EMRContainers::CfnVirtualCluster::EKSInfoProperty
- Defined in:
- emr_containers/cfn_virtual_cluster.rb
Overview
The information about the Amazon EKS cluster.
Instance Attribute Summary collapse
-
#namespace ⇒ String
readonly
The namespaces of the EKS cluster.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(namespace:) ⇒ EKSInfoProperty
constructor
A new instance of EKSInfoProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(namespace:) ⇒ EKSInfoProperty
Returns a new instance of EKSInfoProperty.
687 688 689 690 |
# File 'emr_containers/cfn_virtual_cluster.rb', line 687 def initialize(namespace:) @namespace = namespace Jsii::Type.check_type(@namespace, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "namespace") end |
Instance Attribute Details
#namespace ⇒ String (readonly)
The namespaces of the EKS cluster.
Minimum : 1
Maximum : 63
Pattern : [a-z0-9]([-a-z0-9]*[a-z0-9])?
702 703 704 |
# File 'emr_containers/cfn_virtual_cluster.rb', line 702 def namespace @namespace end |
Class Method Details
.jsii_properties ⇒ Object
704 705 706 707 708 |
# File 'emr_containers/cfn_virtual_cluster.rb', line 704 def self.jsii_properties { :namespace => "namespace", } end |
Instance Method Details
#to_jsii ⇒ Object
710 711 712 713 714 715 716 |
# File 'emr_containers/cfn_virtual_cluster.rb', line 710 def to_jsii result = {} result.merge!({ "namespace" => @namespace, }) result.compact end |