/* * 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 { /// <summary> /// Placeholder documentation for InputSpecification /// </summary> public partial class InputSpecification { private InputCodec _codec; private InputMaximumBitrate _maximumBitrate; private InputResolution _resolution; /// <summary> /// Gets and sets the property Codec. Input codec /// </summary> public InputCodec Codec { get { return this._codec; } set { this._codec = value; } } // Check to see if Codec property is set internal bool IsSetCodec() { return this._codec != null; } /// <summary> /// Gets and sets the property MaximumBitrate. Maximum input bitrate, categorized coarsely /// </summary> public InputMaximumBitrate MaximumBitrate { get { return this._maximumBitrate; } set { this._maximumBitrate = value; } } // Check to see if MaximumBitrate property is set internal bool IsSetMaximumBitrate() { return this._maximumBitrate != null; } /// <summary> /// Gets and sets the property Resolution. Input resolution, categorized coarsely /// </summary> public InputResolution Resolution { get { return this._resolution; } set { this._resolution = value; } } // Check to see if Resolution property is set internal bool IsSetResolution() { return this._resolution != null; } } }