Class: Aws::Appflow::Types::GlueDataCatalogConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::GlueDataCatalogConfig
- Includes:
- Structure
- Defined in:
- 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.
<note markdown=“1”> You can configure a flow with these settings only when the flow destination is Amazon S3.
</note>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_name ⇒ String
The name of the Data Catalog database that stores the metadata tables that Amazon AppFlow creates in your Amazon Web Services account.
-
#role_arn ⇒ String
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.
-
#table_prefix ⇒ String
A naming prefix for each Data Catalog table that Amazon AppFlow creates for the flow that you configure with this setting.
Instance Attribute Details
#database_name ⇒ String
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.
<note markdown=“1”> When you configure a new flow with this parameter, you must specify an existing database.
</note>
2706 2707 2708 2709 2710 2711 2712 |
# File 'lib/aws-sdk-appflow/types.rb', line 2706 class GlueDataCatalogConfig < Struct.new( :role_arn, :database_name, :table_prefix) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
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].
[1]: docs.aws.amazon.com/appflow/latest/userguide/security_iam_id-based-policy-examples.html
2706 2707 2708 2709 2710 2711 2712 |
# File 'lib/aws-sdk-appflow/types.rb', line 2706 class GlueDataCatalogConfig < Struct.new( :role_arn, :database_name, :table_prefix) SENSITIVE = [] include Aws::Structure end |
#table_prefix ⇒ String
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.
2706 2707 2708 2709 2710 2711 2712 |
# File 'lib/aws-sdk-appflow/types.rb', line 2706 class GlueDataCatalogConfig < Struct.new( :role_arn, :database_name, :table_prefix) SENSITIVE = [] include Aws::Structure end |