Struct rusoto_sdb::DeleteAttributesRequest[][src]

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

Fields

A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.

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

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

The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.

Trait Implementations

impl Default for DeleteAttributesRequest
[src]

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

impl Debug for DeleteAttributesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteAttributesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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