Struct aws_sdk_iot::types::SnsAction
source · #[non_exhaustive]pub struct SnsAction {
pub target_arn: String,
pub role_arn: String,
pub message_format: Option<MessageFormat>,
}
Expand description
Describes an action to publish to an Amazon SNS topic.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.target_arn: String
The ARN of the SNS topic.
role_arn: String
The ARN of the IAM role that grants access.
message_format: Option<MessageFormat>
(Optional) The message format of the message to publish. 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 https://docs.aws.amazon.com/sns/latest/dg/json-formats.html refer to their official documentation.
Implementations§
source§impl SnsAction
impl SnsAction
sourcepub fn target_arn(&self) -> &str
pub fn target_arn(&self) -> &str
The ARN of the SNS topic.
sourcepub fn message_format(&self) -> Option<&MessageFormat>
pub fn message_format(&self) -> Option<&MessageFormat>
(Optional) The message format of the message to publish. 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 https://docs.aws.amazon.com/sns/latest/dg/json-formats.html refer to their official documentation.
Trait Implementations§
source§impl PartialEq for SnsAction
impl PartialEq for SnsAction
impl StructuralPartialEq for SnsAction
Auto Trait Implementations§
impl Freeze for SnsAction
impl RefUnwindSafe for SnsAction
impl Send for SnsAction
impl Sync for SnsAction
impl Unpin for SnsAction
impl UnwindSafe for SnsAction
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more