/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The configuration settings for a voice analytics processor.See
* Also:
AWS
* API Reference
The status of the speaker search task.
*/ inline const VoiceAnalyticsConfigurationStatus& GetSpeakerSearchStatus() const{ return m_speakerSearchStatus; } /** *The status of the speaker search task.
*/ inline bool SpeakerSearchStatusHasBeenSet() const { return m_speakerSearchStatusHasBeenSet; } /** *The status of the speaker search task.
*/ inline void SetSpeakerSearchStatus(const VoiceAnalyticsConfigurationStatus& value) { m_speakerSearchStatusHasBeenSet = true; m_speakerSearchStatus = value; } /** *The status of the speaker search task.
*/ inline void SetSpeakerSearchStatus(VoiceAnalyticsConfigurationStatus&& value) { m_speakerSearchStatusHasBeenSet = true; m_speakerSearchStatus = std::move(value); } /** *The status of the speaker search task.
*/ inline VoiceAnalyticsProcessorConfiguration& WithSpeakerSearchStatus(const VoiceAnalyticsConfigurationStatus& value) { SetSpeakerSearchStatus(value); return *this;} /** *The status of the speaker search task.
*/ inline VoiceAnalyticsProcessorConfiguration& WithSpeakerSearchStatus(VoiceAnalyticsConfigurationStatus&& value) { SetSpeakerSearchStatus(std::move(value)); return *this;} /** *The status of the voice tone analysis task.
*/ inline const VoiceAnalyticsConfigurationStatus& GetVoiceToneAnalysisStatus() const{ return m_voiceToneAnalysisStatus; } /** *The status of the voice tone analysis task.
*/ inline bool VoiceToneAnalysisStatusHasBeenSet() const { return m_voiceToneAnalysisStatusHasBeenSet; } /** *The status of the voice tone analysis task.
*/ inline void SetVoiceToneAnalysisStatus(const VoiceAnalyticsConfigurationStatus& value) { m_voiceToneAnalysisStatusHasBeenSet = true; m_voiceToneAnalysisStatus = value; } /** *The status of the voice tone analysis task.
*/ inline void SetVoiceToneAnalysisStatus(VoiceAnalyticsConfigurationStatus&& value) { m_voiceToneAnalysisStatusHasBeenSet = true; m_voiceToneAnalysisStatus = std::move(value); } /** *The status of the voice tone analysis task.
*/ inline VoiceAnalyticsProcessorConfiguration& WithVoiceToneAnalysisStatus(const VoiceAnalyticsConfigurationStatus& value) { SetVoiceToneAnalysisStatus(value); return *this;} /** *The status of the voice tone analysis task.
*/ inline VoiceAnalyticsProcessorConfiguration& WithVoiceToneAnalysisStatus(VoiceAnalyticsConfigurationStatus&& value) { SetVoiceToneAnalysisStatus(std::move(value)); return *this;} private: VoiceAnalyticsConfigurationStatus m_speakerSearchStatus; bool m_speakerSearchStatusHasBeenSet = false; VoiceAnalyticsConfigurationStatus m_voiceToneAnalysisStatus; bool m_voiceToneAnalysisStatusHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMediaPipelines } // namespace Aws