Struct aws_sdk_dynamodb::types::builders::DeleteRequestBuilder
source · #[non_exhaustive]pub struct DeleteRequestBuilder { /* private fields */ }
Expand description
A builder for DeleteRequest
.
Implementations§
source§impl DeleteRequestBuilder
impl DeleteRequestBuilder
sourcepub fn key(self, k: impl Into<String>, v: AttributeValue) -> Self
pub fn key(self, k: impl Into<String>, v: AttributeValue) -> Self
Adds a key-value pair to key
.
To override the contents of this collection use set_key
.
A map of attribute name to attribute values, representing the primary key of the item to delete. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema.
sourcepub fn set_key(self, input: Option<HashMap<String, AttributeValue>>) -> Self
pub fn set_key(self, input: Option<HashMap<String, AttributeValue>>) -> Self
A map of attribute name to attribute values, representing the primary key of the item to delete. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema.
sourcepub fn get_key(&self) -> &Option<HashMap<String, AttributeValue>>
pub fn get_key(&self) -> &Option<HashMap<String, AttributeValue>>
A map of attribute name to attribute values, representing the primary key of the item to delete. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema.
sourcepub fn build(self) -> Result<DeleteRequest, BuildError>
pub fn build(self) -> Result<DeleteRequest, BuildError>
Consumes the builder and constructs a DeleteRequest
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for DeleteRequestBuilder
impl Clone for DeleteRequestBuilder
source§fn clone(&self) -> DeleteRequestBuilder
fn clone(&self) -> DeleteRequestBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteRequestBuilder
impl Debug for DeleteRequestBuilder
source§impl Default for DeleteRequestBuilder
impl Default for DeleteRequestBuilder
source§fn default() -> DeleteRequestBuilder
fn default() -> DeleteRequestBuilder
source§impl PartialEq for DeleteRequestBuilder
impl PartialEq for DeleteRequestBuilder
source§fn eq(&self, other: &DeleteRequestBuilder) -> bool
fn eq(&self, other: &DeleteRequestBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteRequestBuilder
Auto Trait Implementations§
impl Freeze for DeleteRequestBuilder
impl RefUnwindSafe for DeleteRequestBuilder
impl Send for DeleteRequestBuilder
impl Sync for DeleteRequestBuilder
impl Unpin for DeleteRequestBuilder
impl UnwindSafe for DeleteRequestBuilder
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