Class: AWSCDK::Glue::CfnMLTransform::InputRecordTablesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Glue::CfnMLTransform::InputRecordTablesProperty
- Defined in:
- glue/cfn_ml_transform.rb
Overview
A list of AWS Glue table definitions used by the transform.
Instance Attribute Summary collapse
-
#glue_tables ⇒ AWSCDK::IResolvable, ...
readonly
The database and table in the AWS Glue Data Catalog that is used for input or output data.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(glue_tables: nil) ⇒ InputRecordTablesProperty
constructor
A new instance of InputRecordTablesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(glue_tables: nil) ⇒ InputRecordTablesProperty
Returns a new instance of InputRecordTablesProperty.
812 813 814 815 |
# File 'glue/cfn_ml_transform.rb', line 812 def initialize(glue_tables: nil) @glue_tables = glue_tables Jsii::Type.check_type(@glue_tables, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZ2x1ZS5DZm5NTFRyYW5zZm9ybS5HbHVlVGFibGVzUHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "glueTables") unless @glue_tables.nil? end |
Instance Attribute Details
#glue_tables ⇒ AWSCDK::IResolvable, ... (readonly)
The database and table in the AWS Glue Data Catalog that is used for input or output data.
821 822 823 |
# File 'glue/cfn_ml_transform.rb', line 821 def glue_tables @glue_tables end |
Class Method Details
.jsii_properties ⇒ Object
823 824 825 826 827 |
# File 'glue/cfn_ml_transform.rb', line 823 def self.jsii_properties { :glue_tables => "glueTables", } end |
Instance Method Details
#to_jsii ⇒ Object
829 830 831 832 833 834 835 |
# File 'glue/cfn_ml_transform.rb', line 829 def to_jsii result = {} result.merge!({ "glueTables" => @glue_tables, }) result.compact end |