#[non_exhaustive]pub struct ResolveAttributesInputBuilder { /* private fields */ }
Expand description
A builder for ResolveAttributesInput
.
Implementations§
Source§impl ResolveAttributesInputBuilder
impl ResolveAttributesInputBuilder
Sourcepub fn item(self, input: impl Into<HashMap<String, AttributeValue>>) -> Self
pub fn item(self, input: impl Into<HashMap<String, AttributeValue>>) -> Self
The Item to be examined.
Sourcepub fn set_item(self, input: Option<HashMap<String, AttributeValue>>) -> Self
pub fn set_item(self, input: Option<HashMap<String, AttributeValue>>) -> Self
The Item to be examined.
Sourcepub fn table_name(self, input: impl Into<String>) -> Self
pub fn table_name(self, input: impl Into<String>) -> Self
Use the config for this Table.
Sourcepub fn set_table_name(self, input: Option<String>) -> Self
pub fn set_table_name(self, input: Option<String>) -> Self
Use the config for this Table.
Sourcepub fn get_table_name(&self) -> &Option<String>
pub fn get_table_name(&self) -> &Option<String>
Use the config for this Table.
Sourcepub fn version(self, input: impl Into<i32>) -> Self
pub fn version(self, input: impl Into<i32>) -> Self
The beacon version to use. Defaults to ‘writeVersion’.
Sourcepub fn set_version(self, input: Option<i32>) -> Self
pub fn set_version(self, input: Option<i32>) -> Self
The beacon version to use. Defaults to ‘writeVersion’.
Sourcepub fn get_version(&self) -> &Option<i32>
pub fn get_version(&self) -> &Option<i32>
The beacon version to use. Defaults to ‘writeVersion’.
Sourcepub fn build(self) -> Result<ResolveAttributesInput, BuildError>
pub fn build(self) -> Result<ResolveAttributesInput, BuildError>
Consumes the builder and constructs a ResolveAttributesInput
.
Trait Implementations§
Source§impl Clone for ResolveAttributesInputBuilder
impl Clone for ResolveAttributesInputBuilder
Source§fn clone(&self) -> ResolveAttributesInputBuilder
fn clone(&self) -> ResolveAttributesInputBuilder
Returns a duplicate 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 ResolveAttributesInputBuilder
impl Default for ResolveAttributesInputBuilder
Source§fn default() -> ResolveAttributesInputBuilder
fn default() -> ResolveAttributesInputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResolveAttributesInputBuilder
impl PartialEq for ResolveAttributesInputBuilder
Source§fn eq(&self, other: &ResolveAttributesInputBuilder) -> bool
fn eq(&self, other: &ResolveAttributesInputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResolveAttributesInputBuilder
Auto Trait Implementations§
impl Freeze for ResolveAttributesInputBuilder
impl RefUnwindSafe for ResolveAttributesInputBuilder
impl Send for ResolveAttributesInputBuilder
impl Sync for ResolveAttributesInputBuilder
impl Unpin for ResolveAttributesInputBuilder
impl UnwindSafe for ResolveAttributesInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.