Class: AWSCDK::AppFlow::CfnFlow::MetadataCatalogConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::MetadataCatalogConfigProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
Specifies the configuration that Amazon AppFlow uses when it catalogs your data.
When Amazon AppFlow catalogs your data, it stores metadata in a data catalog.
Instance Attribute Summary collapse
-
#glue_data_catalog ⇒ AWSCDK::IResolvable, ...
readonly
Specifies the configuration that Amazon AppFlow uses when it catalogs your data with the AWS Glue Data Catalog .
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(glue_data_catalog: nil) ⇒ MetadataCatalogConfigProperty
constructor
A new instance of MetadataCatalogConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(glue_data_catalog: nil) ⇒ MetadataCatalogConfigProperty
Returns a new instance of MetadataCatalogConfigProperty.
1738 1739 1740 1741 |
# File 'app_flow/cfn_flow.rb', line 1738 def initialize(glue_data_catalog: nil) @glue_data_catalog = glue_data_catalog.is_a?(Hash) ? ::AWSCDK::AppFlow::CfnFlow::GlueDataCatalogProperty.new(**glue_data_catalog.transform_keys(&:to_sym)) : glue_data_catalog Jsii::Type.check_type(@glue_data_catalog, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19hcHBmbG93LkNmbkZsb3cuR2x1ZURhdGFDYXRhbG9nUHJvcGVydHkifV19fQ==")), "glueDataCatalog") unless @glue_data_catalog.nil? end |
Instance Attribute Details
#glue_data_catalog ⇒ AWSCDK::IResolvable, ... (readonly)
Specifies the configuration that Amazon AppFlow uses when it catalogs your data with the AWS Glue Data Catalog .
1747 1748 1749 |
# File 'app_flow/cfn_flow.rb', line 1747 def glue_data_catalog @glue_data_catalog end |
Class Method Details
.jsii_properties ⇒ Object
1749 1750 1751 1752 1753 |
# File 'app_flow/cfn_flow.rb', line 1749 def self.jsii_properties { :glue_data_catalog => "glueDataCatalog", } end |
Instance Method Details
#to_jsii ⇒ Object
1755 1756 1757 1758 1759 1760 1761 |
# File 'app_flow/cfn_flow.rb', line 1755 def to_jsii result = {} result.merge!({ "glueDataCatalog" => @glue_data_catalog, }) result.compact end |