Struct aws_sdk_glue::operation::batch_create_partition::builders::BatchCreatePartitionInputBuilder
source · #[non_exhaustive]pub struct BatchCreatePartitionInputBuilder { /* private fields */ }
Expand description
A builder for BatchCreatePartitionInput
.
Implementations§
source§impl BatchCreatePartitionInputBuilder
impl BatchCreatePartitionInputBuilder
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 get_catalog_id(&self) -> &Option<String>
pub fn get_catalog_id(&self) -> &Option<String>
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.
This field is required.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 get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
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.
This field is required.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 get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
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 partition_input_list
.
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.
sourcepub fn get_partition_input_list(&self) -> &Option<Vec<PartitionInput>>
pub fn get_partition_input_list(&self) -> &Option<Vec<PartitionInput>>
A list of PartitionInput
structures that define the partitions to be created.
sourcepub fn build(self) -> Result<BatchCreatePartitionInput, BuildError>
pub fn build(self) -> Result<BatchCreatePartitionInput, BuildError>
Consumes the builder and constructs a BatchCreatePartitionInput
.
source§impl BatchCreatePartitionInputBuilder
impl BatchCreatePartitionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<BatchCreatePartitionOutput, SdkError<BatchCreatePartitionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<BatchCreatePartitionOutput, SdkError<BatchCreatePartitionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchCreatePartitionInputBuilder
impl Clone for BatchCreatePartitionInputBuilder
source§fn clone(&self) -> BatchCreatePartitionInputBuilder
fn clone(&self) -> BatchCreatePartitionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchCreatePartitionInputBuilder
impl Default for BatchCreatePartitionInputBuilder
source§fn default() -> BatchCreatePartitionInputBuilder
fn default() -> BatchCreatePartitionInputBuilder
source§impl PartialEq for BatchCreatePartitionInputBuilder
impl PartialEq for BatchCreatePartitionInputBuilder
source§fn eq(&self, other: &BatchCreatePartitionInputBuilder) -> bool
fn eq(&self, other: &BatchCreatePartitionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.