/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Chime { namespace Model { /** *

The audio artifact configuration object.

See Also:

AWS * API Reference

*/ class AudioArtifactsConfiguration { public: AWS_CHIME_API AudioArtifactsConfiguration(); AWS_CHIME_API AudioArtifactsConfiguration(Aws::Utils::Json::JsonView jsonValue); AWS_CHIME_API AudioArtifactsConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CHIME_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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