[][src]Struct rusoto_iotthingsgraph::AssociateEntityToThingRequest

pub struct AssociateEntityToThingRequest {
    pub entity_id: String,
    pub namespace_version: Option<i64>,
    pub thing_name: String,
}

Fields

entity_id: String

The ID of the device to be associated with the thing.

The ID should be in the following format.

urn:tdm:REGION/ACCOUNT ID/default:device:DEVICENAME

namespace_version: Option<i64>

The version of the user's namespace. Defaults to the latest version of the user's namespace.

thing_name: String

The name of the thing to which the entity is to be associated.

Trait Implementations

impl Clone for AssociateEntityToThingRequest[src]

impl Debug for AssociateEntityToThingRequest[src]

impl Default for AssociateEntityToThingRequest[src]

impl PartialEq<AssociateEntityToThingRequest> for AssociateEntityToThingRequest[src]

impl Serialize for AssociateEntityToThingRequest[src]

impl StructuralPartialEq for AssociateEntityToThingRequest[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> From<T> 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.