Class: AWSCDK::DataZone::CfnConnection::HyperPodPropertiesInputProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
data_zone/cfn_connection.rb

Overview

The hyper pod properties of a AWS Glue properties patch.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cluster_name:) ⇒ HyperPodPropertiesInputProperty

Returns a new instance of HyperPodPropertiesInputProperty.

Parameters:

  • cluster_name (String)

    The cluster name the hyper pod properties.



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_nameString (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_propertiesObject



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_jsiiObject



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