#[non_exhaustive]pub struct StreamProcessorNotificationChannel {
    pub sns_topic_arn: String,
}Expand description
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation.
Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. For example, if Amazon Rekognition detects a person at second 2, a pet at second 4, and a person again at second 5, Amazon Rekognition sends 2 object class detected notifications, one for a person at second 2 and one for a pet at second 4.
Amazon Rekognition also publishes an an end-of-session notification with a summary when the stream processing session is complete.
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.sns_topic_arn: StringThe Amazon Resource Number (ARN) of the Amazon Amazon Simple Notification Service topic to which Amazon Rekognition posts the completion status.
Implementations§
source§impl StreamProcessorNotificationChannel
 
impl StreamProcessorNotificationChannel
sourcepub fn sns_topic_arn(&self) -> &str
 
pub fn sns_topic_arn(&self) -> &str
The Amazon Resource Number (ARN) of the Amazon Amazon Simple Notification Service topic to which Amazon Rekognition posts the completion status.
source§impl StreamProcessorNotificationChannel
 
impl StreamProcessorNotificationChannel
sourcepub fn builder() -> StreamProcessorNotificationChannelBuilder
 
pub fn builder() -> StreamProcessorNotificationChannelBuilder
Creates a new builder-style object to manufacture StreamProcessorNotificationChannel.
Trait Implementations§
source§impl Clone for StreamProcessorNotificationChannel
 
impl Clone for StreamProcessorNotificationChannel
source§fn clone(&self) -> StreamProcessorNotificationChannel
 
fn clone(&self) -> StreamProcessorNotificationChannel
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for StreamProcessorNotificationChannel
 
impl PartialEq for StreamProcessorNotificationChannel
source§fn eq(&self, other: &StreamProcessorNotificationChannel) -> bool
 
fn eq(&self, other: &StreamProcessorNotificationChannel) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StreamProcessorNotificationChannel
Auto Trait Implementations§
impl Freeze for StreamProcessorNotificationChannel
impl RefUnwindSafe for StreamProcessorNotificationChannel
impl Send for StreamProcessorNotificationChannel
impl Sync for StreamProcessorNotificationChannel
impl Unpin for StreamProcessorNotificationChannel
impl UnwindSafe for StreamProcessorNotificationChannel
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> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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