/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the elastictranscoder-2012-09-25.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.ElasticTranscoder.Model { /// /// 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. /// /// /// public partial class Notifications { private string _completed; private string _error; private string _progressing; private string _warning; /// /// Gets and sets the property Completed. /// /// The Amazon SNS topic that you want to notify when Elastic Transcoder has finished /// processing the job. /// /// public string Completed { get { return this._completed; } set { this._completed = value; } } // Check to see if Completed property is set internal bool IsSetCompleted() { return this._completed != null; } /// /// Gets and sets the property Error. /// /// The Amazon SNS topic that you want to notify when Elastic Transcoder encounters an /// error condition. /// /// public string Error { get { return this._error; } set { this._error = value; } } // Check to see if Error property is set internal bool IsSetError() { return this._error != null; } /// /// Gets and sets the property Progressing. /// /// The Amazon Simple Notification Service (Amazon SNS) topic that you want to notify /// when Elastic Transcoder has started to process the job. /// /// public string Progressing { get { return this._progressing; } set { this._progressing = value; } } // Check to see if Progressing property is set internal bool IsSetProgressing() { return this._progressing != null; } /// /// Gets and sets the property Warning. /// /// The Amazon SNS topic that you want to notify when Elastic Transcoder encounters a /// warning condition. /// /// public string Warning { get { return this._warning; } set { this._warning = value; } } // Check to see if Warning property is set internal bool IsSetWarning() { return this._warning != null; } } }