/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The configuration object for concatenating transcription
* messages.See Also:
AWS
* API Reference
Enables or disables the configuration object.
*/ inline const ArtifactsConcatenationState& 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 ArtifactsConcatenationState& value) { m_stateHasBeenSet = true; m_state = value; } /** *Enables or disables the configuration object.
*/ inline void SetState(ArtifactsConcatenationState&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *Enables or disables the configuration object.
*/ inline TranscriptionMessagesConcatenationConfiguration& WithState(const ArtifactsConcatenationState& value) { SetState(value); return *this;} /** *Enables or disables the configuration object.
*/ inline TranscriptionMessagesConcatenationConfiguration& WithState(ArtifactsConcatenationState&& value) { SetState(std::move(value)); return *this;} private: ArtifactsConcatenationState m_state; bool m_stateHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMediaPipelines } // namespace Aws