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

Allows you to set audio channel definitions and post-call analytics * settings.

See Also:

AWS * API Reference

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

Indicates which speaker is on which audio channel.

*/ inline const Aws::Vector& GetChannelDefinitions() const{ return m_channelDefinitions; } /** *

Indicates which speaker is on which audio channel.

*/ inline bool ChannelDefinitionsHasBeenSet() const { return m_channelDefinitionsHasBeenSet; } /** *

Indicates which speaker is on which audio channel.

*/ inline void SetChannelDefinitions(const Aws::Vector& value) { m_channelDefinitionsHasBeenSet = true; m_channelDefinitions = value; } /** *

Indicates which speaker is on which audio channel.

*/ inline void SetChannelDefinitions(Aws::Vector&& value) { m_channelDefinitionsHasBeenSet = true; m_channelDefinitions = std::move(value); } /** *

Indicates which speaker is on which audio channel.

*/ inline ConfigurationEvent& WithChannelDefinitions(const Aws::Vector& value) { SetChannelDefinitions(value); return *this;} /** *

Indicates which speaker is on which audio channel.

*/ inline ConfigurationEvent& WithChannelDefinitions(Aws::Vector&& value) { SetChannelDefinitions(std::move(value)); return *this;} /** *

Indicates which speaker is on which audio channel.

*/ inline ConfigurationEvent& AddChannelDefinitions(const ChannelDefinition& value) { m_channelDefinitionsHasBeenSet = true; m_channelDefinitions.push_back(value); return *this; } /** *

Indicates which speaker is on which audio channel.

*/ inline ConfigurationEvent& AddChannelDefinitions(ChannelDefinition&& value) { m_channelDefinitionsHasBeenSet = true; m_channelDefinitions.push_back(std::move(value)); return *this; } /** *

Provides additional optional settings for your Call Analytics post-call * request, including encryption and output locations for your redacted and * unredacted transcript.

*/ inline const PostCallAnalyticsSettings& GetPostCallAnalyticsSettings() const{ return m_postCallAnalyticsSettings; } /** *

Provides additional optional settings for your Call Analytics post-call * request, including encryption and output locations for your redacted and * unredacted transcript.

*/ inline bool PostCallAnalyticsSettingsHasBeenSet() const { return m_postCallAnalyticsSettingsHasBeenSet; } /** *

Provides additional optional settings for your Call Analytics post-call * request, including encryption and output locations for your redacted and * unredacted transcript.

*/ inline void SetPostCallAnalyticsSettings(const PostCallAnalyticsSettings& value) { m_postCallAnalyticsSettingsHasBeenSet = true; m_postCallAnalyticsSettings = value; } /** *

Provides additional optional settings for your Call Analytics post-call * request, including encryption and output locations for your redacted and * unredacted transcript.

*/ inline void SetPostCallAnalyticsSettings(PostCallAnalyticsSettings&& value) { m_postCallAnalyticsSettingsHasBeenSet = true; m_postCallAnalyticsSettings = std::move(value); } /** *

Provides additional optional settings for your Call Analytics post-call * request, including encryption and output locations for your redacted and * unredacted transcript.

*/ inline ConfigurationEvent& WithPostCallAnalyticsSettings(const PostCallAnalyticsSettings& value) { SetPostCallAnalyticsSettings(value); return *this;} /** *

Provides additional optional settings for your Call Analytics post-call * request, including encryption and output locations for your redacted and * unredacted transcript.

*/ inline ConfigurationEvent& WithPostCallAnalyticsSettings(PostCallAnalyticsSettings&& value) { SetPostCallAnalyticsSettings(std::move(value)); return *this;} private: Aws::Vector m_channelDefinitions; bool m_channelDefinitionsHasBeenSet = false; PostCallAnalyticsSettings m_postCallAnalyticsSettings; bool m_postCallAnalyticsSettingsHasBeenSet = false; }; } // namespace Model } // namespace TranscribeStreamingService } // namespace Aws