Struct aws_sdk_dynamodb::model::cancellation_reason::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CancellationReason
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn item(self, k: impl Into<String>, v: AttributeValue) -> Self
pub fn item(self, k: impl Into<String>, v: AttributeValue) -> Self
Adds a key-value pair to item
.
To override the contents of this collection use set_item
.
Item in the request which caused the transaction to get cancelled.
sourcepub fn set_item(self, input: Option<HashMap<String, AttributeValue>>) -> Self
pub fn set_item(self, input: Option<HashMap<String, AttributeValue>>) -> Self
Item in the request which caused the transaction to get cancelled.
sourcepub fn code(self, input: impl Into<String>) -> Self
pub fn code(self, input: impl Into<String>) -> Self
Status code for the result of the cancelled transaction.
sourcepub fn set_code(self, input: Option<String>) -> Self
pub fn set_code(self, input: Option<String>) -> Self
Status code for the result of the cancelled transaction.
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
Cancellation reason message description.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
Cancellation reason message description.
sourcepub fn build(self) -> CancellationReason
pub fn build(self) -> CancellationReason
Consumes the builder and constructs a CancellationReason
.