logo
pub trait IotEventsData {
    fn batch_acknowledge_alarm<'life0, 'async_trait>(
        &'life0 self,
        input: BatchAcknowledgeAlarmRequest
    ) -> Pin<Box<dyn Future<Output = Result<BatchAcknowledgeAlarmResponse, RusotoError<BatchAcknowledgeAlarmError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn batch_disable_alarm<'life0, 'async_trait>(
        &'life0 self,
        input: BatchDisableAlarmRequest
    ) -> Pin<Box<dyn Future<Output = Result<BatchDisableAlarmResponse, RusotoError<BatchDisableAlarmError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn batch_enable_alarm<'life0, 'async_trait>(
        &'life0 self,
        input: BatchEnableAlarmRequest
    ) -> Pin<Box<dyn Future<Output = Result<BatchEnableAlarmResponse, RusotoError<BatchEnableAlarmError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; 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_reset_alarm<'life0, 'async_trait>(
        &'life0 self,
        input: BatchResetAlarmRequest
    ) -> Pin<Box<dyn Future<Output = Result<BatchResetAlarmResponse, RusotoError<BatchResetAlarmError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn batch_snooze_alarm<'life0, 'async_trait>(
        &'life0 self,
        input: BatchSnoozeAlarmRequest
    ) -> Pin<Box<dyn Future<Output = Result<BatchSnoozeAlarmResponse, RusotoError<BatchSnoozeAlarmError>>> + 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_alarm<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeAlarmRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeAlarmResponse, RusotoError<DescribeAlarmError>>> + 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_alarms<'life0, 'async_trait>(
        &'life0 self,
        input: ListAlarmsRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListAlarmsResponse, RusotoError<ListAlarmsError>>> + 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
; }
Expand description

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

Required Methods

Acknowledges one or more alarms. The alarms change to the ACKNOWLEDGED state after you acknowledge them.

Disables one or more alarms. The alarms change to the DISABLED state after you disable them.

Enables one or more alarms. The alarms change to the NORMAL state after you enable them.

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.

Resets one or more alarms. The alarms return to the NORMAL state after you reset them.

Changes one or more alarms to the snooze mode. The alarms change to the SNOOZE_DISABLED state after you set them to the snooze mode.

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

Retrieves information about an alarm.

Returns information about the specified detector (instance).

Lists one or more alarms. The operation returns only the metadata associated with each alarm.

Lists detectors (the instances of a detector model).

Implementors