Class: Aws::Appflow::Types::GlueDataCatalogConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb

Overview

Specifies the configuration that Amazon AppFlow uses when it catalogs your data with the Glue Data Catalog. When Amazon AppFlow catalogs your data, it stores metadata in Data Catalog tables. This metadata represents the data that's transferred by the flow that you configure with these settings.

You can configure a flow with these settings only when the flow destination is Amazon S3.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#database_nameString

The name of the Data Catalog database that stores the metadata tables that Amazon AppFlow creates in your Amazon Web Services account. These tables contain metadata for the data that's transferred by the flow that you configure with this parameter.

When you configure a new flow with this parameter, you must specify an existing database.

Returns:

  • (String)


2706
2707
2708
2709
2710
2711
2712
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2706

class GlueDataCatalogConfig < Struct.new(
  :role_arn,
  :database_name,
  :table_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The Amazon Resource Name (ARN) of an IAM role that grants Amazon AppFlow the permissions it needs to create Data Catalog tables, databases, and partitions.

For an example IAM policy that has the required permissions, see Identity-based policy examples for Amazon AppFlow.

Returns:

  • (String)


2706
2707
2708
2709
2710
2711
2712
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2706

class GlueDataCatalogConfig < Struct.new(
  :role_arn,
  :database_name,
  :table_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#table_prefixString

A naming prefix for each Data Catalog table that Amazon AppFlow creates for the flow that you configure with this setting. Amazon AppFlow adds the prefix to the beginning of the each table name.

Returns:

  • (String)


2706
2707
2708
2709
2710
2711
2712
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2706

class GlueDataCatalogConfig < Struct.new(
  :role_arn,
  :database_name,
  :table_prefix)
  SENSITIVE = []
  include Aws::Structure
end