Struct rusoto_dynamodb::WriteRequest [] [src]

pub struct WriteRequest {
    pub delete_request: Option<DeleteRequest>,
    pub put_request: Option<PutRequest>,
}

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 will need to provide two separate WriteRequest objects.

Fields

A request to perform a DeleteItem operation.

A request to perform a PutItem operation.

Trait Implementations

impl Default for WriteRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for WriteRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for WriteRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for WriteRequest

impl Sync for WriteRequest