Struct aws_sdk_glue::operation::batch_get_partition::builders::BatchGetPartitionOutputBuilder
source · #[non_exhaustive]pub struct BatchGetPartitionOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetPartitionOutput
.
Implementations§
source§impl BatchGetPartitionOutputBuilder
impl BatchGetPartitionOutputBuilder
sourcepub fn partitions(self, input: Partition) -> Self
pub fn partitions(self, input: Partition) -> Self
Appends an item to partitions
.
To override the contents of this collection use set_partitions
.
A list of the requested partitions.
sourcepub fn set_partitions(self, input: Option<Vec<Partition>>) -> Self
pub fn set_partitions(self, input: Option<Vec<Partition>>) -> Self
A list of the requested partitions.
sourcepub fn get_partitions(&self) -> &Option<Vec<Partition>>
pub fn get_partitions(&self) -> &Option<Vec<Partition>>
A list of the requested partitions.
sourcepub fn unprocessed_keys(self, input: PartitionValueList) -> Self
pub fn unprocessed_keys(self, input: PartitionValueList) -> Self
Appends an item to unprocessed_keys
.
To override the contents of this collection use set_unprocessed_keys
.
A list of the partition values in the request for which partitions were not returned.
sourcepub fn set_unprocessed_keys(
self,
input: Option<Vec<PartitionValueList>>,
) -> Self
pub fn set_unprocessed_keys( self, input: Option<Vec<PartitionValueList>>, ) -> Self
A list of the partition values in the request for which partitions were not returned.
sourcepub fn get_unprocessed_keys(&self) -> &Option<Vec<PartitionValueList>>
pub fn get_unprocessed_keys(&self) -> &Option<Vec<PartitionValueList>>
A list of the partition values in the request for which partitions were not returned.
sourcepub fn build(self) -> BatchGetPartitionOutput
pub fn build(self) -> BatchGetPartitionOutput
Consumes the builder and constructs a BatchGetPartitionOutput
.
Trait Implementations§
source§impl Clone for BatchGetPartitionOutputBuilder
impl Clone for BatchGetPartitionOutputBuilder
source§fn clone(&self) -> BatchGetPartitionOutputBuilder
fn clone(&self) -> BatchGetPartitionOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for BatchGetPartitionOutputBuilder
impl Default for BatchGetPartitionOutputBuilder
source§fn default() -> BatchGetPartitionOutputBuilder
fn default() -> BatchGetPartitionOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetPartitionOutputBuilder
impl PartialEq for BatchGetPartitionOutputBuilder
source§fn eq(&self, other: &BatchGetPartitionOutputBuilder) -> bool
fn eq(&self, other: &BatchGetPartitionOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetPartitionOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetPartitionOutputBuilder
impl RefUnwindSafe for BatchGetPartitionOutputBuilder
impl Send for BatchGetPartitionOutputBuilder
impl Sync for BatchGetPartitionOutputBuilder
impl Unpin for BatchGetPartitionOutputBuilder
impl UnwindSafe for BatchGetPartitionOutputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.