Struct rusoto_iot::SnsAction [] [src]

pub struct SnsAction {
    pub message_format: Option<String>,
    pub role_arn: String,
    pub target_arn: String,
}

Describes an action to publish to an Amazon SNS topic.

Fields

The message format of the message to publish. Optional. Accepted values are "JSON" and "RAW". The default value of the attribute is "RAW". SNS uses this setting to determine if the payload should be parsed and relevant platform-specific bits of the payload should be extracted. To read more about SNS message formats, see http://docs.aws.amazon.com/sns/latest/dg/json-formats.html refer to their official documentation.

The ARN of the IAM role that grants access.

The ARN of the SNS topic.

Trait Implementations

impl Default for SnsAction
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for SnsAction
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SnsAction
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SnsAction

impl Sync for SnsAction