Struct rusoto_sdb::PutAttributesRequest[][src]

pub struct PutAttributesRequest {
    pub attributes: Vec<ReplaceableAttribute>,
    pub domain_name: String,
    pub expected: Option<UpdateCondition>,
    pub item_name: String,
}

Fields

The list of attributes.

The name of the domain in which to perform the operation.

The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.

The name of the item.

Trait Implementations

impl Default for PutAttributesRequest
[src]

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

impl Debug for PutAttributesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for PutAttributesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutAttributesRequest
[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