[][src]Struct rusoto_iot::PutAssetPropertyValueEntry

pub struct PutAssetPropertyValueEntry {
    pub asset_id: Option<String>,
    pub entry_id: Option<String>,
    pub property_alias: Option<String>,
    pub property_id: Option<String>,
    pub property_values: Vec<AssetPropertyValue>,
}

An asset property value entry containing the following information.

Fields

asset_id: Option<String>

The ID of the AWS IoT SiteWise asset. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

entry_id: Option<String>

Optional. A unique identifier for this entry that you can define to better track which message caused an error in case of failure. Accepts substitution templates. Defaults to a new UUID.

property_alias: Option<String>

The name of the property alias associated with your asset property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

property_id: Option<String>

The ID of the asset's property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

property_values: Vec<AssetPropertyValue>

A list of property values to insert that each contain timestamp, quality, and value (TQV) information.

Trait Implementations

impl Clone for PutAssetPropertyValueEntry[src]

impl Debug for PutAssetPropertyValueEntry[src]

impl Default for PutAssetPropertyValueEntry[src]

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

impl PartialEq<PutAssetPropertyValueEntry> for PutAssetPropertyValueEntry[src]

impl Serialize for PutAssetPropertyValueEntry[src]

impl StructuralPartialEq for PutAssetPropertyValueEntry[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.