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<Notifications> for Notifications
impl PartialEq<Notifications> 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 ==
.