#[non_exhaustive]pub struct DeletePartitionInputBuilder { /* private fields */ }Expand description
A builder for DeletePartitionInput.
Implementations§
source§impl DeletePartitionInputBuilder
impl DeletePartitionInputBuilder
sourcepub fn catalog_id(self, input: impl Into<String>) -> Self
pub fn catalog_id(self, input: impl Into<String>) -> Self
The ID of the Data Catalog where the partition to be deleted resides. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn set_catalog_id(self, input: Option<String>) -> Self
pub fn set_catalog_id(self, input: Option<String>) -> Self
The ID of the Data Catalog where the partition to be deleted resides. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn get_catalog_id(&self) -> &Option<String>
pub fn get_catalog_id(&self) -> &Option<String>
The ID of the Data Catalog where the partition to be deleted resides. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn database_name(self, input: impl Into<String>) -> Self
pub fn database_name(self, input: impl Into<String>) -> Self
The name of the catalog database in which the table in question resides.
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 catalog database in which the table in question resides.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the catalog database in which the table in question resides.
sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
The name of the table that contains the partition to be deleted.
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 table that contains the partition to be deleted.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the table that contains the partition to be deleted.
sourcepub fn partition_values(self, input: impl Into<String>) -> Self
pub fn partition_values(self, input: impl Into<String>) -> Self
Appends an item to partition_values.
To override the contents of this collection use set_partition_values.
The values that define the partition.
sourcepub fn set_partition_values(self, input: Option<Vec<String>>) -> Self
pub fn set_partition_values(self, input: Option<Vec<String>>) -> Self
The values that define the partition.
sourcepub fn get_partition_values(&self) -> &Option<Vec<String>>
pub fn get_partition_values(&self) -> &Option<Vec<String>>
The values that define the partition.
sourcepub fn build(self) -> Result<DeletePartitionInput, BuildError>
pub fn build(self) -> Result<DeletePartitionInput, BuildError>
Consumes the builder and constructs a DeletePartitionInput.
source§impl DeletePartitionInputBuilder
impl DeletePartitionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeletePartitionOutput, SdkError<DeletePartitionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeletePartitionOutput, SdkError<DeletePartitionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeletePartitionInputBuilder
impl Clone for DeletePartitionInputBuilder
source§fn clone(&self) -> DeletePartitionInputBuilder
fn clone(&self) -> DeletePartitionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeletePartitionInputBuilder
impl Debug for DeletePartitionInputBuilder
source§impl Default for DeletePartitionInputBuilder
impl Default for DeletePartitionInputBuilder
source§fn default() -> DeletePartitionInputBuilder
fn default() -> DeletePartitionInputBuilder
source§impl PartialEq for DeletePartitionInputBuilder
impl PartialEq for DeletePartitionInputBuilder
source§fn eq(&self, other: &DeletePartitionInputBuilder) -> bool
fn eq(&self, other: &DeletePartitionInputBuilder) -> bool
self and other values to be equal, and is used
by ==.