Struct aws_sdk_glue::client::fluent_builders::BatchCreatePartition
source · pub struct BatchCreatePartition { /* private fields */ }Expand description
Fluent builder constructing a request to BatchCreatePartition.
Creates one or more partitions in a batch operation.
Implementations§
source§impl BatchCreatePartition
impl BatchCreatePartition
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<BatchCreatePartition, AwsResponseRetryClassifier>, SdkError<BatchCreatePartitionError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<BatchCreatePartition, AwsResponseRetryClassifier>, SdkError<BatchCreatePartitionError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<BatchCreatePartitionOutput, SdkError<BatchCreatePartitionError>>
pub async fn send(
self
) -> Result<BatchCreatePartitionOutput, SdkError<BatchCreatePartitionError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn catalog_id(self, input: impl Into<String>) -> Self
pub fn catalog_id(self, input: impl Into<String>) -> Self
The ID of the catalog in which the partition is to be created. Currently, this should be the Amazon Web Services account ID.
sourcepub fn set_catalog_id(self, input: Option<String>) -> Self
pub fn set_catalog_id(self, input: Option<String>) -> Self
The ID of the catalog in which the partition is to be created. Currently, this should be the Amazon Web Services account ID.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the metadata database in which the partition is to be created.
sourcepub fn set_database_name(self, input: Option<String>) -> Self
pub fn set_database_name(self, input: Option<String>) -> Self
The name of the metadata database in which the partition is to be created.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the metadata table in which the partition is to be created.
sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
The name of the metadata table in which the partition is to be created.
sourcepub fn partition_input_list(self, input: PartitionInput) -> Self
pub fn partition_input_list(self, input: PartitionInput) -> Self
Appends an item to PartitionInputList.
To override the contents of this collection use set_partition_input_list.
A list of PartitionInput structures that define the partitions to be created.
sourcepub fn set_partition_input_list(self, input: Option<Vec<PartitionInput>>) -> Self
pub fn set_partition_input_list(self, input: Option<Vec<PartitionInput>>) -> Self
A list of PartitionInput structures that define the partitions to be created.
Trait Implementations§
source§impl Clone for BatchCreatePartition
impl Clone for BatchCreatePartition
source§fn clone(&self) -> BatchCreatePartition
fn clone(&self) -> BatchCreatePartition
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more