Create Partition
| glue_create_partition | R Documentation | 
Creates a new partition¶
Description¶
Creates a new partition.
Usage¶
glue_create_partition(CatalogId, DatabaseName, TableName,
  PartitionInput)
Arguments¶
CatalogId | 
The Amazon Web Services account ID of the catalog in which the partition is to be created.  | 
DatabaseName | 
[required] The name of the metadata database in which the partition is to be created.  | 
TableName | 
[required] The name of the metadata table in which the partition is to be created.  | 
PartitionInput | 
[required] A   | 
Value¶
An empty list.
Request syntax¶
svc$create_partition(
  CatalogId = "string",
  DatabaseName = "string",
  TableName = "string",
  PartitionInput = list(
    Values = list(
      "string"
    ),
    LastAccessTime = as.POSIXct(
      "2015-01-01"
    ),
    StorageDescriptor = list(
      Columns = list(
        list(
          Name = "string",
          Type = "string",
          Comment = "string",
          Parameters = list(
            "string"
          )
        )
      ),
      Location = "string",
      AdditionalLocations = list(
        "string"
      ),
      InputFormat = "string",
      OutputFormat = "string",
      Compressed = TRUE|FALSE,
      NumberOfBuckets = 123,
      SerdeInfo = list(
        Name = "string",
        SerializationLibrary = "string",
        Parameters = list(
          "string"
        )
      ),
      BucketColumns = list(
        "string"
      ),
      SortColumns = list(
        list(
          Column = "string",
          SortOrder = 123
        )
      ),
      Parameters = list(
        "string"
      ),
      SkewedInfo = list(
        SkewedColumnNames = list(
          "string"
        ),
        SkewedColumnValues = list(
          "string"
        ),
        SkewedColumnValueLocationMaps = list(
          "string"
        )
      ),
      StoredAsSubDirectories = TRUE|FALSE,
      SchemaReference = list(
        SchemaId = list(
          SchemaArn = "string",
          SchemaName = "string",
          RegistryName = "string"
        ),
        SchemaVersionId = "string",
        SchemaVersionNumber = 123
      )
    ),
    Parameters = list(
      "string"
    ),
    LastAnalyzedTime = as.POSIXct(
      "2015-01-01"
    )
  )
)