Class: Aws::GlueDataBrew::Types::DataCatalogInputDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DataCatalogInputDefinition
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass DataCatalogInputDefinition data as a hash:
{
catalog_id: "CatalogId",
database_name: "DatabaseName", # required
table_name: "TableName", # required
temp_directory: {
bucket: "Bucket", # required
key: "Key",
},
}
Represents how metadata stored in the AWS Glue Data Catalog is defined in a DataBrew dataset.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_id ⇒ String
The unique identifier of the AWS account that holds the Data Catalog that stores the data.
-
#database_name ⇒ String
The name of a database in the Data Catalog.
-
#table_name ⇒ String
The name of a database table in the Data Catalog.
-
#temp_directory ⇒ Types::S3Location
An Amazon location that AWS Glue Data Catalog can use as a temporary directory.
Instance Attribute Details
#catalog_id ⇒ String
The unique identifier of the AWS account that holds the Data Catalog that stores the data.
813 814 815 816 817 818 819 820 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 813 class DataCatalogInputDefinition < Struct.new( :catalog_id, :database_name, :table_name, :temp_directory) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The name of a database in the Data Catalog.
813 814 815 816 817 818 819 820 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 813 class DataCatalogInputDefinition < Struct.new( :catalog_id, :database_name, :table_name, :temp_directory) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of a database table in the Data Catalog. This table corresponds to a DataBrew dataset.
813 814 815 816 817 818 819 820 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 813 class DataCatalogInputDefinition < Struct.new( :catalog_id, :database_name, :table_name, :temp_directory) SENSITIVE = [] include Aws::Structure end |
#temp_directory ⇒ Types::S3Location
An Amazon location that AWS Glue Data Catalog can use as a temporary directory.
813 814 815 816 817 818 819 820 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 813 class DataCatalogInputDefinition < Struct.new( :catalog_id, :database_name, :table_name, :temp_directory) SENSITIVE = [] include Aws::Structure end |