Struct aws_sdk_iot::types::PublishFindingToSnsParams
source · #[non_exhaustive]pub struct PublishFindingToSnsParams {
pub topic_arn: String,
}
Expand description
Parameters to define a mitigation action that publishes findings to Amazon SNS. You can implement your own custom actions in response to the Amazon SNS messages.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.topic_arn: String
The ARN of the topic to which you want to publish the findings.
Implementations§
source§impl PublishFindingToSnsParams
impl PublishFindingToSnsParams
sourcepub fn builder() -> PublishFindingToSnsParamsBuilder
pub fn builder() -> PublishFindingToSnsParamsBuilder
Creates a new builder-style object to manufacture PublishFindingToSnsParams
.
Trait Implementations§
source§impl Clone for PublishFindingToSnsParams
impl Clone for PublishFindingToSnsParams
source§fn clone(&self) -> PublishFindingToSnsParams
fn clone(&self) -> PublishFindingToSnsParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PublishFindingToSnsParams
impl Debug for PublishFindingToSnsParams
source§impl PartialEq for PublishFindingToSnsParams
impl PartialEq for PublishFindingToSnsParams
source§fn eq(&self, other: &PublishFindingToSnsParams) -> bool
fn eq(&self, other: &PublishFindingToSnsParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PublishFindingToSnsParams
Auto Trait Implementations§
impl Freeze for PublishFindingToSnsParams
impl RefUnwindSafe for PublishFindingToSnsParams
impl Send for PublishFindingToSnsParams
impl Sync for PublishFindingToSnsParams
impl Unpin for PublishFindingToSnsParams
impl UnwindSafe for PublishFindingToSnsParams
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.