/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The audio artifact concatenation configuration object.See
* Also:
AWS
* API Reference
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