/* * 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 medialive-2017-10-14.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.MediaLive.Model { /// /// Output settings. There can be multiple outputs within a group. /// public partial class Output { private List _audioDescriptionNames = new List(); private List _captionDescriptionNames = new List(); private string _outputName; private OutputSettings _outputSettings; private string _videoDescriptionName; /// /// Gets and sets the property AudioDescriptionNames. The names of the AudioDescriptions /// used as audio sources for this output. /// public List AudioDescriptionNames { get { return this._audioDescriptionNames; } set { this._audioDescriptionNames = value; } } // Check to see if AudioDescriptionNames property is set internal bool IsSetAudioDescriptionNames() { return this._audioDescriptionNames != null && this._audioDescriptionNames.Count > 0; } /// /// Gets and sets the property CaptionDescriptionNames. The names of the CaptionDescriptions /// used as caption sources for this output. /// public List CaptionDescriptionNames { get { return this._captionDescriptionNames; } set { this._captionDescriptionNames = value; } } // Check to see if CaptionDescriptionNames property is set internal bool IsSetCaptionDescriptionNames() { return this._captionDescriptionNames != null && this._captionDescriptionNames.Count > 0; } /// /// Gets and sets the property OutputName. The name used to identify an output. /// [AWSProperty(Min=1, Max=255)] public string OutputName { get { return this._outputName; } set { this._outputName = value; } } // Check to see if OutputName property is set internal bool IsSetOutputName() { return this._outputName != null; } /// /// Gets and sets the property OutputSettings. Output type-specific settings. /// [AWSProperty(Required=true)] public OutputSettings OutputSettings { get { return this._outputSettings; } set { this._outputSettings = value; } } // Check to see if OutputSettings property is set internal bool IsSetOutputSettings() { return this._outputSettings != null; } /// /// Gets and sets the property VideoDescriptionName. The name of the VideoDescription /// used as the source for this output. /// public string VideoDescriptionName { get { return this._videoDescriptionName; } set { this._videoDescriptionName = value; } } // Check to see if VideoDescriptionName property is set internal bool IsSetVideoDescriptionName() { return this._videoDescriptionName != null; } } }