/*
* 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
{
///
/// Audio Codec Settings
///
public partial class AudioCodecSettings
{
private AacSettings _aacSettings;
private Ac3Settings _ac3Settings;
private Eac3AtmosSettings _eac3AtmosSettings;
private Eac3Settings _eac3Settings;
private Mp2Settings _mp2Settings;
private PassThroughSettings _passThroughSettings;
private WavSettings _wavSettings;
///
/// Gets and sets the property AacSettings.
///
public AacSettings AacSettings
{
get { return this._aacSettings; }
set { this._aacSettings = value; }
}
// Check to see if AacSettings property is set
internal bool IsSetAacSettings()
{
return this._aacSettings != null;
}
///
/// Gets and sets the property Ac3Settings.
///
public Ac3Settings Ac3Settings
{
get { return this._ac3Settings; }
set { this._ac3Settings = value; }
}
// Check to see if Ac3Settings property is set
internal bool IsSetAc3Settings()
{
return this._ac3Settings != null;
}
///
/// Gets and sets the property Eac3AtmosSettings.
///
public Eac3AtmosSettings Eac3AtmosSettings
{
get { return this._eac3AtmosSettings; }
set { this._eac3AtmosSettings = value; }
}
// Check to see if Eac3AtmosSettings property is set
internal bool IsSetEac3AtmosSettings()
{
return this._eac3AtmosSettings != null;
}
///
/// Gets and sets the property Eac3Settings.
///
public Eac3Settings Eac3Settings
{
get { return this._eac3Settings; }
set { this._eac3Settings = value; }
}
// Check to see if Eac3Settings property is set
internal bool IsSetEac3Settings()
{
return this._eac3Settings != null;
}
///
/// Gets and sets the property Mp2Settings.
///
public Mp2Settings Mp2Settings
{
get { return this._mp2Settings; }
set { this._mp2Settings = value; }
}
// Check to see if Mp2Settings property is set
internal bool IsSetMp2Settings()
{
return this._mp2Settings != null;
}
///
/// Gets and sets the property PassThroughSettings.
///
public PassThroughSettings PassThroughSettings
{
get { return this._passThroughSettings; }
set { this._passThroughSettings = value; }
}
// Check to see if PassThroughSettings property is set
internal bool IsSetPassThroughSettings()
{
return this._passThroughSettings != null;
}
///
/// Gets and sets the property WavSettings.
///
public WavSettings WavSettings
{
get { return this._wavSettings; }
set { this._wavSettings = value; }
}
// Check to see if WavSettings property is set
internal bool IsSetWavSettings()
{
return this._wavSettings != null;
}
}
}