Struct rusoto_glue::CreatePartitionRequest[][src]

pub struct CreatePartitionRequest {
    pub catalog_id: Option<String>,
    pub database_name: String,
    pub partition_input: PartitionInput,
    pub table_name: String,
}

Fields

The ID of the catalog in which the partion is to be created. Currently, this should be the AWS account ID.

The name of the metadata database in which the partition is to be created.

A PartitionInput structure defining the partition to be created.

The name of the metadata table in which the partition is to be created.

Trait Implementations

impl Default for CreatePartitionRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreatePartitionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreatePartitionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreatePartitionRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations