/** * 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 ChimeSDKMediaPipelines { namespace Model { /** *

The audio artifact concatenation configuration object.

See * Also:

AWS * API Reference

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

Enables or disables the configuration object.

*/ inline const AudioArtifactsConcatenationState& GetState() const{ return m_state; } /** *

Enables or disables the configuration object.

*/ inline bool StateHasBeenSet() const { return m_stateHasBeenSet; } /** *

Enables or disables the configuration object.

*/ inline void SetState(const AudioArtifactsConcatenationState& value) { m_stateHasBeenSet = true; m_state = value; } /** *

Enables or disables the configuration object.

*/ inline void SetState(AudioArtifactsConcatenationState&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *

Enables or disables the configuration object.

*/ inline AudioConcatenationConfiguration& WithState(const AudioArtifactsConcatenationState& value) { SetState(value); return *this;} /** *

Enables or disables the configuration object.

*/ inline AudioConcatenationConfiguration& WithState(AudioArtifactsConcatenationState&& value) { SetState(std::move(value)); return *this;} private: AudioArtifactsConcatenationState m_state; bool m_stateHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMediaPipelines } // namespace Aws