pub struct ResolveAttributesFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ResolveAttributes
.
Given an Item, show the intermediate values (e.g. compound beacons, virtual fields).
Implementations§
Source§impl ResolveAttributesFluentBuilder
impl ResolveAttributesFluentBuilder
Sourcepub fn as_input(&self) -> &ResolveAttributesInputBuilder
pub fn as_input(&self) -> &ResolveAttributesInputBuilder
Access the ResolveAttributes as a reference.
Sourcepub async fn send(self) -> Result<ResolveAttributesOutput, Error>
pub async fn send(self) -> Result<ResolveAttributesOutput, Error>
Sends the request and returns the response.
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’.
Trait Implementations§
Source§impl Clone for ResolveAttributesFluentBuilder
impl Clone for ResolveAttributesFluentBuilder
Source§fn clone(&self) -> ResolveAttributesFluentBuilder
fn clone(&self) -> ResolveAttributesFluentBuilder
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 moreAuto Trait Implementations§
impl Freeze for ResolveAttributesFluentBuilder
impl !RefUnwindSafe for ResolveAttributesFluentBuilder
impl Send for ResolveAttributesFluentBuilder
impl Sync for ResolveAttributesFluentBuilder
impl Unpin for ResolveAttributesFluentBuilder
impl !UnwindSafe for ResolveAttributesFluentBuilder
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.