Struct aws_sdk_dynamodb::model::WriteRequest [−][src]
#[non_exhaustive]pub struct WriteRequest {
pub put_request: Option<PutRequest>,
pub delete_request: Option<DeleteRequest>,
}Expand description
Represents an operation to perform - either DeleteItem or
PutItem. You can only request one of these operations, not both, in a
single WriteRequest. If you do need to perform both of these operations,
you need to provide two separate WriteRequest objects.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.put_request: Option<PutRequest>A request to perform a PutItem operation.
delete_request: Option<DeleteRequest>A request to perform a DeleteItem operation.
Implementations
A request to perform a PutItem operation.
A request to perform a DeleteItem operation.
Creates a new builder-style object to manufacture WriteRequest
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for WriteRequest
impl Send for WriteRequest
impl Sync for WriteRequest
impl Unpin for WriteRequest
impl UnwindSafe for WriteRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more