[][src]Struct rusoto_iot::Action

pub struct Action {
    pub cloudwatch_alarm: Option<CloudwatchAlarmAction>,
    pub cloudwatch_metric: Option<CloudwatchMetricAction>,
    pub dynamo_db: Option<DynamoDBAction>,
    pub dynamo_d_bv_2: Option<DynamoDBv2Action>,
    pub elasticsearch: Option<ElasticsearchAction>,
    pub firehose: Option<FirehoseAction>,
    pub iot_analytics: Option<IotAnalyticsAction>,
    pub iot_events: Option<IotEventsAction>,
    pub kinesis: Option<KinesisAction>,
    pub lambda: Option<LambdaAction>,
    pub republish: Option<RepublishAction>,
    pub s_3: Option<S3Action>,
    pub salesforce: Option<SalesforceAction>,
    pub sns: Option<SnsAction>,
    pub sqs: Option<SqsAction>,
    pub step_functions: Option<StepFunctionsAction>,
}

Describes the actions associated with a rule.

Fields

cloudwatch_alarm: Option<CloudwatchAlarmAction>

Change the state of a CloudWatch alarm.

cloudwatch_metric: Option<CloudwatchMetricAction>

Capture a CloudWatch metric.

dynamo_db: Option<DynamoDBAction>

Write to a DynamoDB table.

dynamo_d_bv_2: Option<DynamoDBv2Action>

Write to a DynamoDB table. This is a new version of the DynamoDB action. It allows you to write each attribute in an MQTT message payload into a separate DynamoDB column.

elasticsearch: Option<ElasticsearchAction>

Write data to an Amazon Elasticsearch Service domain.

firehose: Option<FirehoseAction>

Write to an Amazon Kinesis Firehose stream.

iot_analytics: Option<IotAnalyticsAction>

Sends message data to an AWS IoT Analytics channel.

iot_events: Option<IotEventsAction>

Sends an input to an AWS IoT Events detector.

kinesis: Option<KinesisAction>

Write data to an Amazon Kinesis stream.

lambda: Option<LambdaAction>

Invoke a Lambda function.

republish: Option<RepublishAction>

Publish to another MQTT topic.

s_3: Option<S3Action>

Write to an Amazon S3 bucket.

salesforce: Option<SalesforceAction>

Send a message to a Salesforce IoT Cloud Input Stream.

sns: Option<SnsAction>

Publish to an Amazon SNS topic.

sqs: Option<SqsAction>

Publish to an Amazon SQS queue.

step_functions: Option<StepFunctionsAction>

Starts execution of a Step Functions state machine.

Trait Implementations

impl Clone for Action[src]

impl Default for Action[src]

impl PartialEq<Action> for Action[src]

impl Debug for Action[src]

impl Serialize for Action[src]

impl<'de> Deserialize<'de> for Action[src]

Auto Trait Implementations

impl Send for Action

impl Sync for Action

impl Unpin for Action

impl UnwindSafe for Action

impl RefUnwindSafe for Action

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self