Struct aws_sdk_dynamodb::model::delete_request::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DeleteRequest
.
Implementations§
source§impl Builder
impl Builder
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 build(self) -> DeleteRequest
pub fn build(self) -> DeleteRequest
Consumes the builder and constructs a DeleteRequest
.