/** * 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 configuration object for an event concatenation pipeline.

See * Also:

AWS * API Reference

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

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 MeetingEventsConcatenationConfiguration& WithState(const ArtifactsConcatenationState& value) { SetState(value); return *this;} /** *

Enables or disables the configuration object.

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