Class: AWSCDK::AppFlow::CfnFlow::MetadataCatalogConfigProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(glue_data_catalog: nil) ⇒ MetadataCatalogConfigProperty

Returns a new instance of MetadataCatalogConfigProperty.

Parameters:



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_catalogAWSCDK::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_propertiesObject



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_jsiiObject



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