Partition Args
data class PartitionArgs(val catalogId: Output<String>? = null, val databaseName: Output<String>? = null, val parameters: Output<Map<String, String>>? = null, val partitionValues: Output<List<String>>? = null, val storageDescriptor: Output<PartitionStorageDescriptorArgs>? = null, val tableName: Output<String>? = null) : ConvertibleToJava<PartitionArgs>
Provides a Glue Partition Resource.
Example Usage
resources:
example:
type: aws:glue:Partition
properties:
databaseName: some-database
tableName: some-table
values:
- some-value
Content copied to clipboard
Import
Using pulumi import
, import Glue Partitions using the catalog ID (usually AWS account ID), database name, table name and partition values. For example:
$ pulumi import aws:glue/partition:Partition part 123456789012:MyDatabase:MyTable:val1#val2
Content copied to clipboard
Properties
Link copied to clipboard
Name of the metadata database where the table metadata resides. For Hive compatibility, this must be all lowercase.
Link copied to clipboard
Properties associated with this table, as a list of key-value pairs.
Link copied to clipboard
The values that define the partition.
Link copied to clipboard
A storage descriptor object containing information about the physical storage of this table. You can refer to the Glue Developer Guide for a full explanation of this object.