[][src]Trait rusoto_iotevents_data::IotEventsData

pub trait IotEventsData {
#[must_use]    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
;
#[must_use] 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
;
#[must_use] 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
;
#[must_use] 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
; }

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

Required methods

#[must_use]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.

#[must_use]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.

#[must_use]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).

#[must_use]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).

Loading content...

Implementors

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).

Loading content...