[][src]Trait rusoto_iot_data::IotData

pub trait IotData {
#[must_use]    pub fn delete_thing_shadow<'life0, 'async_trait>(
        &'life0 self,
        input: DeleteThingShadowRequest
    ) -> Pin<Box<dyn Future<Output = Result<DeleteThingShadowResponse, RusotoError<DeleteThingShadowError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn get_thing_shadow<'life0, 'async_trait>(
        &'life0 self,
        input: GetThingShadowRequest
    ) -> Pin<Box<dyn Future<Output = Result<GetThingShadowResponse, RusotoError<GetThingShadowError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn list_named_shadows_for_thing<'life0, 'async_trait>(
        &'life0 self,
        input: ListNamedShadowsForThingRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListNamedShadowsForThingResponse, RusotoError<ListNamedShadowsForThingError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn publish<'life0, 'async_trait>(
        &'life0 self,
        input: PublishRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<PublishError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn update_thing_shadow<'life0, 'async_trait>(
        &'life0 self,
        input: UpdateThingShadowRequest
    ) -> Pin<Box<dyn Future<Output = Result<UpdateThingShadowResponse, RusotoError<UpdateThingShadowError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Trait representing the capabilities of the AWS IoT Data Plane API. AWS IoT Data Plane clients implement this trait.

Required methods

#[must_use]pub fn delete_thing_shadow<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteThingShadowRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteThingShadowResponse, RusotoError<DeleteThingShadowError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the shadow for the specified thing.

For more information, see DeleteThingShadow in the AWS IoT Developer Guide.

#[must_use]pub fn get_thing_shadow<'life0, 'async_trait>(
    &'life0 self,
    input: GetThingShadowRequest
) -> Pin<Box<dyn Future<Output = Result<GetThingShadowResponse, RusotoError<GetThingShadowError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets the shadow for the specified thing.

For more information, see GetThingShadow in the AWS IoT Developer Guide.

#[must_use]pub fn list_named_shadows_for_thing<'life0, 'async_trait>(
    &'life0 self,
    input: ListNamedShadowsForThingRequest
) -> Pin<Box<dyn Future<Output = Result<ListNamedShadowsForThingResponse, RusotoError<ListNamedShadowsForThingError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the shadows for the specified thing.

#[must_use]pub fn publish<'life0, 'async_trait>(
    &'life0 self,
    input: PublishRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<PublishError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Publishes state information.

For more information, see HTTP Protocol in the AWS IoT Developer Guide.

#[must_use]pub fn update_thing_shadow<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateThingShadowRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateThingShadowResponse, RusotoError<UpdateThingShadowError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the shadow for the specified thing.

For more information, see UpdateThingShadow in the AWS IoT Developer Guide.

Loading content...

Implementors

impl IotData for IotDataClient[src]

pub fn delete_thing_shadow<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteThingShadowRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteThingShadowResponse, RusotoError<DeleteThingShadowError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the shadow for the specified thing.

For more information, see DeleteThingShadow in the AWS IoT Developer Guide.

pub fn get_thing_shadow<'life0, 'async_trait>(
    &'life0 self,
    input: GetThingShadowRequest
) -> Pin<Box<dyn Future<Output = Result<GetThingShadowResponse, RusotoError<GetThingShadowError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Gets the shadow for the specified thing.

For more information, see GetThingShadow in the AWS IoT Developer Guide.

pub fn list_named_shadows_for_thing<'life0, 'async_trait>(
    &'life0 self,
    input: ListNamedShadowsForThingRequest
) -> Pin<Box<dyn Future<Output = Result<ListNamedShadowsForThingResponse, RusotoError<ListNamedShadowsForThingError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Lists the shadows for the specified thing.

pub fn publish<'life0, 'async_trait>(
    &'life0 self,
    input: PublishRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<PublishError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Publishes state information.

For more information, see HTTP Protocol in the AWS IoT Developer Guide.

pub fn update_thing_shadow<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateThingShadowRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateThingShadowResponse, RusotoError<UpdateThingShadowError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Updates the shadow for the specified thing.

For more information, see UpdateThingShadow in the AWS IoT Developer Guide.

Loading content...