Class: AWSCDK::DataZone::CfnConnection::HyperPodPropertiesInputProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataZone::CfnConnection::HyperPodPropertiesInputProperty
- Defined in:
- data_zone/cfn_connection.rb
Overview
The hyper pod properties of a AWS Glue properties patch.
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
readonly
The cluster name the hyper pod properties.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(cluster_name:) ⇒ HyperPodPropertiesInputProperty
constructor
A new instance of HyperPodPropertiesInputProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(cluster_name:) ⇒ HyperPodPropertiesInputProperty
Returns a new instance of HyperPodPropertiesInputProperty.
1418 1419 1420 1421 |
# File 'data_zone/cfn_connection.rb', line 1418 def initialize(cluster_name:) @cluster_name = cluster_name Jsii::Type.check_type(@cluster_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "clusterName") end |
Instance Attribute Details
#cluster_name ⇒ String (readonly)
The cluster name the hyper pod properties.
1427 1428 1429 |
# File 'data_zone/cfn_connection.rb', line 1427 def cluster_name @cluster_name end |
Class Method Details
.jsii_properties ⇒ Object
1429 1430 1431 1432 1433 |
# File 'data_zone/cfn_connection.rb', line 1429 def self.jsii_properties { :cluster_name => "clusterName", } end |
Instance Method Details
#to_jsii ⇒ Object
1435 1436 1437 1438 1439 1440 1441 |
# File 'data_zone/cfn_connection.rb', line 1435 def to_jsii result = {} result.merge!({ "clusterName" => @cluster_name, }) result.compact end |