#[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 ==.impl StructuralPartialEq for DeletePartitionInputBuilder
Auto Trait Implementations§
impl Freeze for DeletePartitionInputBuilder
impl RefUnwindSafe for DeletePartitionInputBuilder
impl Send for DeletePartitionInputBuilder
impl Sync for DeletePartitionInputBuilder
impl Unpin for DeletePartitionInputBuilder
impl UnwindSafe for DeletePartitionInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more