/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The audio artifact configuration object.See Also:
AWS
* API Reference
The MUX type of the audio artifact configuration object.
*/ inline const AudioMuxType& GetMuxType() const{ return m_muxType; } /** *The MUX type of the audio artifact configuration object.
*/ inline bool MuxTypeHasBeenSet() const { return m_muxTypeHasBeenSet; } /** *The MUX type of the audio artifact configuration object.
*/ inline void SetMuxType(const AudioMuxType& value) { m_muxTypeHasBeenSet = true; m_muxType = value; } /** *The MUX type of the audio artifact configuration object.
*/ inline void SetMuxType(AudioMuxType&& value) { m_muxTypeHasBeenSet = true; m_muxType = std::move(value); } /** *The MUX type of the audio artifact configuration object.
*/ inline AudioArtifactsConfiguration& WithMuxType(const AudioMuxType& value) { SetMuxType(value); return *this;} /** *The MUX type of the audio artifact configuration object.
*/ inline AudioArtifactsConfiguration& WithMuxType(AudioMuxType&& value) { SetMuxType(std::move(value)); return *this;} private: AudioMuxType m_muxType; bool m_muxTypeHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws