Struct rusoto_iot::AttributePayload [] [src]

pub struct AttributePayload {
    pub attributes: Option<Attributes>,
    pub merge: Option<Flag>,
}

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.

impl Clone for AttributePayload
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more