/*
* 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
{
///
/// Placeholder documentation for InputSpecification
///
public partial class InputSpecification
{
private InputCodec _codec;
private InputMaximumBitrate _maximumBitrate;
private InputResolution _resolution;
///
/// Gets and sets the property Codec. Input codec
///
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;
}
///
/// Gets and sets the property MaximumBitrate. Maximum input bitrate, categorized coarsely
///
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;
}
///
/// Gets and sets the property Resolution. Input resolution, categorized coarsely
///
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;
}
}
}