[][src]Trait rusoto_iotevents_data::IotEventsData

pub trait IotEventsData {
    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
;
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
;
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
;
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

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, 

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.

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, 

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

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, 

Returns information about the specified detector (instance).

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, 

Lists detectors (the instances of a detector model).

Loading content...

Implementors

impl IotEventsData for IotEventsDataClient[src]

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.

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.

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

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