#[non_exhaustive]pub struct GetPartitionInputBuilder { /* private fields */ }Expand description
A builder for GetPartitionInput.
Implementations§
source§impl GetPartitionInputBuilder
impl GetPartitionInputBuilder
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 in question 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 in question 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 in question 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 where the partition 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 where the partition resides.
sourcepub fn get_database_name(&self) -> &Option<String>
pub fn get_database_name(&self) -> &Option<String>
The name of the catalog database where the partition 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 partition's table.
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 partition's table.
sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
The name of the partition's table.
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<GetPartitionInput, BuildError>
pub fn build(self) -> Result<GetPartitionInput, BuildError>
Consumes the builder and constructs a GetPartitionInput.
source§impl GetPartitionInputBuilder
impl GetPartitionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<GetPartitionOutput, SdkError<GetPartitionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<GetPartitionOutput, SdkError<GetPartitionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetPartitionInputBuilder
impl Clone for GetPartitionInputBuilder
source§fn clone(&self) -> GetPartitionInputBuilder
fn clone(&self) -> GetPartitionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetPartitionInputBuilder
impl Debug for GetPartitionInputBuilder
source§impl Default for GetPartitionInputBuilder
impl Default for GetPartitionInputBuilder
source§fn default() -> GetPartitionInputBuilder
fn default() -> GetPartitionInputBuilder
source§impl PartialEq for GetPartitionInputBuilder
impl PartialEq for GetPartitionInputBuilder
source§fn eq(&self, other: &GetPartitionInputBuilder) -> bool
fn eq(&self, other: &GetPartitionInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetPartitionInputBuilder
Auto Trait Implementations§
impl Freeze for GetPartitionInputBuilder
impl RefUnwindSafe for GetPartitionInputBuilder
impl Send for GetPartitionInputBuilder
impl Sync for GetPartitionInputBuilder
impl Unpin for GetPartitionInputBuilder
impl UnwindSafe for GetPartitionInputBuilder
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