[][src]Struct rusoto_iotanalytics::DeviceShadowEnrichActivity

pub struct DeviceShadowEnrichActivity {
    pub attribute: String,
    pub name: String,
    pub next: Option<String>,
    pub role_arn: String,
    pub thing_name: String,
}

An activity that adds information from the AWS IoT Device Shadows service to a message.

Fields

attribute: String

The name of the attribute that is added to the message.

name: String

The name of the 'deviceShadowEnrich' activity.

next: Option<String>

The next activity in the pipeline.

role_arn: String

The ARN of the role that allows access to the device's shadow.

thing_name: String

The name of the IoT device whose shadow information is added to the message.

Trait Implementations

impl Clone for DeviceShadowEnrichActivity[src]

impl Debug for DeviceShadowEnrichActivity[src]

impl Default for DeviceShadowEnrichActivity[src]

impl<'de> Deserialize<'de> for DeviceShadowEnrichActivity[src]

impl PartialEq<DeviceShadowEnrichActivity> for DeviceShadowEnrichActivity[src]

impl Serialize for DeviceShadowEnrichActivity[src]

impl StructuralPartialEq for DeviceShadowEnrichActivity[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.