Struct aws_sdk_elastictranscoder::operation::update_pipeline_notifications::UpdatePipelineNotificationsInput
source · #[non_exhaustive]pub struct UpdatePipelineNotificationsInput {
pub id: Option<String>,
pub notifications: Option<Notifications>,
}
Expand description
The UpdatePipelineNotificationsRequest
structure.
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.id: Option<String>
The identifier of the pipeline for which you want to change notification settings.
notifications: Option<Notifications>
The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify to report job status.
To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.
-
Progressing: The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process jobs that are added to this pipeline. This is the ARN that Amazon SNS returned when you created the topic.
-
Complete: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing a job. This is the ARN that Amazon SNS returned when you created the topic.
-
Warning: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition. This is the ARN that Amazon SNS returned when you created the topic.
-
Error: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition. This is the ARN that Amazon SNS returned when you created the topic.
Implementations§
source§impl UpdatePipelineNotificationsInput
impl UpdatePipelineNotificationsInput
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The identifier of the pipeline for which you want to change notification settings.
sourcepub fn notifications(&self) -> Option<&Notifications>
pub fn notifications(&self) -> Option<&Notifications>
The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify to report job status.
To receive notifications, you must also subscribe to the new topic in the Amazon SNS console.
-
Progressing: The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic that you want to notify when Elastic Transcoder has started to process jobs that are added to this pipeline. This is the ARN that Amazon SNS returned when you created the topic.
-
Complete: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder has finished processing a job. This is the ARN that Amazon SNS returned when you created the topic.
-
Warning: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters a warning condition. This is the ARN that Amazon SNS returned when you created the topic.
-
Error: The topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder encounters an error condition. This is the ARN that Amazon SNS returned when you created the topic.
source§impl UpdatePipelineNotificationsInput
impl UpdatePipelineNotificationsInput
sourcepub fn builder() -> UpdatePipelineNotificationsInputBuilder
pub fn builder() -> UpdatePipelineNotificationsInputBuilder
Creates a new builder-style object to manufacture UpdatePipelineNotificationsInput
.
Trait Implementations§
source§impl Clone for UpdatePipelineNotificationsInput
impl Clone for UpdatePipelineNotificationsInput
source§fn clone(&self) -> UpdatePipelineNotificationsInput
fn clone(&self) -> UpdatePipelineNotificationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdatePipelineNotificationsInput
impl PartialEq for UpdatePipelineNotificationsInput
source§fn eq(&self, other: &UpdatePipelineNotificationsInput) -> bool
fn eq(&self, other: &UpdatePipelineNotificationsInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdatePipelineNotificationsInput
Auto Trait Implementations§
impl Freeze for UpdatePipelineNotificationsInput
impl RefUnwindSafe for UpdatePipelineNotificationsInput
impl Send for UpdatePipelineNotificationsInput
impl Sync for UpdatePipelineNotificationsInput
impl Unpin for UpdatePipelineNotificationsInput
impl UnwindSafe for UpdatePipelineNotificationsInput
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