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]

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

impl Debug for WriteRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for WriteRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for WriteRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations