_aws_profile Input Column
The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( "type" VARCHAR, "name" VARCHAR, "account_id" VARCHAR, "via_profile_name" VARCHAR, "assumed_role_arn" VARCHAR, "organization" STRUCT( "account_name" VARCHAR, "id" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[], "master_account" STRUCT( "id" VARCHAR, "email" VARCHAR ), "parents" STRUCT( "type" VARCHAR, "id" VARCHAR, "name" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[] )[] ) ) |
partition
The requested information, in the form of a Partition object. | STRUCT( "values" VARCHAR[], "database_name" VARCHAR, "table_name" VARCHAR, "creation_time" TIMESTAMP_S, "last_access_time" TIMESTAMP_S, "storage_descriptor" STRUCT( "columns" STRUCT( "name" VARCHAR, "type" VARCHAR, "comment" VARCHAR, "parameters" MAP(VARCHAR, VARCHAR) )[], "location" VARCHAR, "additional_locations" VARCHAR[], "input_format" VARCHAR, "output_format" VARCHAR, "compressed" BOOLEAN, "number_of_buckets" BIGINT, "serde_info" STRUCT( "name" VARCHAR, "serialization_library" VARCHAR, "parameters" MAP(VARCHAR, VARCHAR) ), "bucket_columns" VARCHAR[], "sort_columns" STRUCT( "column" VARCHAR, "sort_order" BIGINT )[], "parameters" MAP(VARCHAR, VARCHAR), "skewed_info" STRUCT( "skewed_column_names" VARCHAR[], "skewed_column_values" VARCHAR[], "skewed_column_value_location_maps" MAP(VARCHAR, VARCHAR) ), "stored_as_sub_directories" BOOLEAN, "schema_reference" STRUCT( "schema_id" STRUCT( "schema_arn" VARCHAR, "schema_name" VARCHAR, "registry_name" VARCHAR ), "schema_version_id" VARCHAR, "schema_version_number" BIGINT ) ), "parameters" MAP(VARCHAR, VARCHAR), "last_analyzed_time" TIMESTAMP_S, "catalog_id" VARCHAR ) |
Show child fields- partition.catalog_id
The ID of the Data Catalog in which the partition resides.
- partition.creation_time
The time at which the partition was created.
- partition.database_name
The name of the catalog database in which to create the partition.
- partition.last_access_time
The last time at which the partition was accessed.
- partition.last_analyzed_time
The last time at which column statistics were computed for this partition.
- partition.parameters
These key-value pairs define partition parameters.
- partition.storage_descriptor
Provides information about the physical location where the partition is stored. Show child fields- partition.storage_descriptor.additional_locations[]
- partition.storage_descriptor.bucket_columns[]
- partition.storage_descriptor.columns[]
Show child fields- partition.storage_descriptor.columns[].comment
A free-form text comment.
- partition.storage_descriptor.columns[].name
The name of the Column.
- partition.storage_descriptor.columns[].parameters
These key-value pairs define properties associated with the column.
- partition.storage_descriptor.columns[].type
The data type of the Column.
- partition.storage_descriptor.compressed
True if the data in the table is compressed, or False if not.
- partition.storage_descriptor.input_format
The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.
- partition.storage_descriptor.location
The physical location of the table. By default, this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.
- partition.storage_descriptor.number_of_buckets
Must be specified if the table contains any dimension columns.
- partition.storage_descriptor.output_format
The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.
- partition.storage_descriptor.parameters
The user-supplied properties in key-value form.
- partition.storage_descriptor.schema_reference
An object that references a schema stored in the Glue Schema Registry. When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference. Show child fields- partition.storage_descriptor.schema_reference.schema_id
A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided. Show child fields- partition.storage_descriptor.schema_reference.schema_id.registry_name
The name of the schema registry that contains the schema.
- partition.storage_descriptor.schema_reference.schema_id.schema_arn
The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.
- partition.storage_descriptor.schema_reference.schema_id.schema_name
The name of the schema. One of SchemaArn or SchemaName has to be provided.
- partition.storage_descriptor.schema_reference.schema_version_id
The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.
- partition.storage_descriptor.schema_reference.schema_version_number
The version number of the schema.
- partition.storage_descriptor.serde_info
The serialization/deserialization (SerDe) information. Show child fields- partition.storage_descriptor.serde_info.name
Name of the SerDe.
- partition.storage_descriptor.serde_info.parameters
These key-value pairs define initialization parameters for the SerDe.
- partition.storage_descriptor.serde_info.serialization_library
Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.
- partition.storage_descriptor.skewed_info
The information about values that appear frequently in a column (skewed values). Show child fields- partition.storage_descriptor.skewed_info.skewed_column_names[]
- partition.storage_descriptor.skewed_info.skewed_column_value_location_maps
A mapping of skewed values to the columns that contain them.
- partition.storage_descriptor.skewed_info.skewed_column_values[]
- partition.storage_descriptor.sort_columns[]
Show child fields- partition.storage_descriptor.sort_columns[].column
The name of the column.
- partition.storage_descriptor.sort_columns[].sort_order
Indicates that the column is sorted in ascending order (== 1), or in descending order (==0).
- partition.storage_descriptor.stored_as_sub_directories
True if the table data is stored in subdirectories, or False if not.
- partition.table_name
The name of the database table in which to create the partition.
- partition.values[]
|