Struct aws_sdk_elastictranscoder::types::Notifications
source · #[non_exhaustive]pub struct Notifications {
pub progressing: Option<String>,
pub completed: Option<String>,
pub warning: Option<String>,
pub error: Option<String>,
}
Expand description
The Amazon Simple Notification Service (Amazon SNS) topic or topics to notify in order to report job status.
To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.
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.progressing: Option<String>
The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.
completed: Option<String>
The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.
warning: Option<String>
The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition.
error: Option<String>
The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition.
Implementations§
source§impl Notifications
impl Notifications
sourcepub fn progressing(&self) -> Option<&str>
pub fn progressing(&self) -> Option<&str>
The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process the job.
sourcepub fn completed(&self) -> Option<&str>
pub fn completed(&self) -> Option<&str>
The Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing the job.
source§impl Notifications
impl Notifications
sourcepub fn builder() -> NotificationsBuilder
pub fn builder() -> NotificationsBuilder
Creates a new builder-style object to manufacture Notifications
.
Trait Implementations§
source§impl Clone for Notifications
impl Clone for Notifications
source§fn clone(&self) -> Notifications
fn clone(&self) -> Notifications
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Notifications
impl Debug for Notifications
source§impl PartialEq for Notifications
impl PartialEq for Notifications
source§fn eq(&self, other: &Notifications) -> bool
fn eq(&self, other: &Notifications) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Notifications
Auto Trait Implementations§
impl Freeze for Notifications
impl RefUnwindSafe for Notifications
impl Send for Notifications
impl Sync for Notifications
impl Unpin for Notifications
impl UnwindSafe for Notifications
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