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
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",
bucket_owner: "BucketOwner",
},
}
Represents how metadata stored in the 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 Amazon Web Services 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
Represents an Amazon location where DataBrew can store intermediate results.
Instance Attribute Details
#catalog_id ⇒ String
The unique identifier of the Amazon Web Services account that holds the Data Catalog that stores the data.
1121 1122 1123 1124 1125 1126 1127 1128 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1121 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.
1121 1122 1123 1124 1125 1126 1127 1128 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1121 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.
1121 1122 1123 1124 1125 1126 1127 1128 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1121 class DataCatalogInputDefinition < Struct.new( :catalog_id, :database_name, :table_name, :temp_directory) SENSITIVE = [] include Aws::Structure end |
#temp_directory ⇒ Types::S3Location
Represents an Amazon location where DataBrew can store intermediate results.
1121 1122 1123 1124 1125 1126 1127 1128 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1121 class DataCatalogInputDefinition < Struct.new( :catalog_id, :database_name, :table_name, :temp_directory) SENSITIVE = [] include Aws::Structure end |