[][src]Struct rusoto_iotevents_data::IotEventsDataClient

pub struct IotEventsDataClient { /* fields omitted */ }

A client for the AWS IoT Events Data API.

Implementations

impl IotEventsDataClient[src]

pub fn new(region: Region) -> IotEventsDataClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> IotEventsDataClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> IotEventsDataClient[src]

Trait Implementations

impl Clone for IotEventsDataClient[src]

impl IotEventsData for IotEventsDataClient[src]

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

Sends a set of messages to the AWS IoT Events system. Each message payload is transformed into the input you specify ("inputName") and ingested into any detectors that monitor that input. If multiple messages are sent, the order in which the messages are processed isn't guaranteed. To guarantee ordering, you must send messages one at a time and wait for a successful response.

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

Updates the state, variable values, and timer settings of one or more detectors (instances) of a specified detector model.

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

Returns information about the specified detector (instance).

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

Lists detectors (the instances of a detector model).

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.