pub struct UpdatePipelineNotificationsRequest {
pub id: String,
pub notifications: Notifications,
}
Expand description
The UpdatePipelineNotificationsRequest
structure.
Fields§
§id: String
The identifier of the pipeline for which you want to change notification settings.
notifications: 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.
Trait Implementations§
Source§impl Clone for UpdatePipelineNotificationsRequest
impl Clone for UpdatePipelineNotificationsRequest
Source§fn clone(&self) -> UpdatePipelineNotificationsRequest
fn clone(&self) -> UpdatePipelineNotificationsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for UpdatePipelineNotificationsRequest
impl Default for UpdatePipelineNotificationsRequest
Source§fn default() -> UpdatePipelineNotificationsRequest
fn default() -> UpdatePipelineNotificationsRequest
Source§impl PartialEq for UpdatePipelineNotificationsRequest
impl PartialEq for UpdatePipelineNotificationsRequest
Source§fn eq(&self, other: &UpdatePipelineNotificationsRequest) -> bool
fn eq(&self, other: &UpdatePipelineNotificationsRequest) -> bool
self
and other
values to be equal, and is used by ==
.