Class: AWSCDK::DataZone::CfnConnection::SparkGlueArgsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataZone::CfnConnection::SparkGlueArgsProperty
- Defined in:
- data_zone/cfn_connection.rb
Overview
The Spark AWS Glue args.
Instance Attribute Summary collapse
-
#connection ⇒ String?
readonly
The connection in the Spark AWS Glue args.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(connection: nil) ⇒ SparkGlueArgsProperty
constructor
A new instance of SparkGlueArgsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(connection: nil) ⇒ SparkGlueArgsProperty
Returns a new instance of SparkGlueArgsProperty.
2138 2139 2140 2141 |
# File 'data_zone/cfn_connection.rb', line 2138 def initialize(connection: nil) @connection = connection Jsii::Type.check_type(@connection, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "connection") unless @connection.nil? end |
Instance Attribute Details
#connection ⇒ String? (readonly)
The connection in the Spark AWS Glue args.
2147 2148 2149 |
# File 'data_zone/cfn_connection.rb', line 2147 def connection @connection end |
Class Method Details
.jsii_properties ⇒ Object
2149 2150 2151 2152 2153 |
# File 'data_zone/cfn_connection.rb', line 2149 def self.jsii_properties { :connection => "connection", } end |
Instance Method Details
#to_jsii ⇒ Object
2155 2156 2157 2158 2159 2160 2161 |
# File 'data_zone/cfn_connection.rb', line 2155 def to_jsii result = {} result.merge!({ "connection" => @connection, }) result.compact end |