/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ElasticTranscoder { namespace Model { /** *

The UpdatePipelineNotificationsRequest structure.

See * Also:

AWS * API Reference

*/ class UpdatePipelineNotificationsRequest : public ElasticTranscoderRequest { public: AWS_ELASTICTRANSCODER_API UpdatePipelineNotificationsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdatePipelineNotifications"; } AWS_ELASTICTRANSCODER_API Aws::String SerializePayload() const override; /** *

The identifier of the pipeline for which you want to change notification * settings.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The identifier of the pipeline for which you want to change notification * settings.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The identifier of the pipeline for which you want to change notification * settings.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The identifier of the pipeline for which you want to change notification * settings.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The identifier of the pipeline for which you want to change notification * settings.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The identifier of the pipeline for which you want to change notification * settings.

*/ inline UpdatePipelineNotificationsRequest& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The identifier of the pipeline for which you want to change notification * settings.

*/ inline UpdatePipelineNotificationsRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The identifier of the pipeline for which you want to change notification * settings.

*/ inline UpdatePipelineNotificationsRequest& WithId(const char* value) { SetId(value); return *this;} /** *

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.

*/ inline const Notifications& GetNotifications() const{ return m_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.

*/ inline bool NotificationsHasBeenSet() const { return m_notificationsHasBeenSet; } /** *

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.

*/ inline void SetNotifications(const Notifications& value) { m_notificationsHasBeenSet = true; m_notifications = value; } /** *

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.

*/ inline void SetNotifications(Notifications&& value) { m_notificationsHasBeenSet = true; m_notifications = std::move(value); } /** *

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.

*/ inline UpdatePipelineNotificationsRequest& WithNotifications(const Notifications& value) { SetNotifications(value); return *this;} /** *

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.

*/ inline UpdatePipelineNotificationsRequest& WithNotifications(Notifications&& value) { SetNotifications(std::move(value)); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; Notifications m_notifications; bool m_notificationsHasBeenSet = false; }; } // namespace Model } // namespace ElasticTranscoder } // namespace Aws