Struct rusoto_iot::AttributePayload[][src]

pub struct AttributePayload {
    pub attributes: Option<HashMap<String, String>>,
    pub merge: Option<bool>,
}

The attribute payload.

Fields

A JSON string containing up to three key-value pair in JSON format. For example:

{\"attributes\":{\"string1\":\"string2\"}}

Specifies whether the list of attributes provided in the AttributePayload is merged with the attributes stored in the registry, instead of overwriting them.

To remove an attribute, call UpdateThing with an empty attribute value.

The merge attribute is only valid when calling UpdateThing.

Trait Implementations

impl Default for AttributePayload
[src]

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

impl Debug for AttributePayload
[src]

Formats the value using the given formatter. Read more

impl Clone for AttributePayload
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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