/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the counts for a slot resolution in the results of a test
* execution.See Also:
AWS
* API Reference
The total number of results.
*/ inline int GetTotalResultCount() const{ return m_totalResultCount; } /** *The total number of results.
*/ inline bool TotalResultCountHasBeenSet() const { return m_totalResultCountHasBeenSet; } /** *The total number of results.
*/ inline void SetTotalResultCount(int value) { m_totalResultCountHasBeenSet = true; m_totalResultCount = value; } /** *The total number of results.
*/ inline SlotResolutionTestResultItemCounts& WithTotalResultCount(int value) { SetTotalResultCount(value); return *this;} /** *The number of matched, mismatched and execution error results for speech * transcription for the slot.
*/ inline const Aws::MapThe number of matched, mismatched and execution error results for speech * transcription for the slot.
*/ inline bool SpeechTranscriptionResultCountsHasBeenSet() const { return m_speechTranscriptionResultCountsHasBeenSet; } /** *The number of matched, mismatched and execution error results for speech * transcription for the slot.
*/ inline void SetSpeechTranscriptionResultCounts(const Aws::MapThe number of matched, mismatched and execution error results for speech * transcription for the slot.
*/ inline void SetSpeechTranscriptionResultCounts(Aws::MapThe number of matched, mismatched and execution error results for speech * transcription for the slot.
*/ inline SlotResolutionTestResultItemCounts& WithSpeechTranscriptionResultCounts(const Aws::MapThe number of matched, mismatched and execution error results for speech * transcription for the slot.
*/ inline SlotResolutionTestResultItemCounts& WithSpeechTranscriptionResultCounts(Aws::MapThe number of matched, mismatched and execution error results for speech * transcription for the slot.
*/ inline SlotResolutionTestResultItemCounts& AddSpeechTranscriptionResultCounts(const TestResultMatchStatus& key, int value) { m_speechTranscriptionResultCountsHasBeenSet = true; m_speechTranscriptionResultCounts.emplace(key, value); return *this; } /** *The number of matched, mismatched and execution error results for speech * transcription for the slot.
*/ inline SlotResolutionTestResultItemCounts& AddSpeechTranscriptionResultCounts(TestResultMatchStatus&& key, int value) { m_speechTranscriptionResultCountsHasBeenSet = true; m_speechTranscriptionResultCounts.emplace(std::move(key), value); return *this; } /** *The number of matched and mismatched results for slot resolution for the * slot.
*/ inline const Aws::MapThe number of matched and mismatched results for slot resolution for the * slot.
*/ inline bool SlotMatchResultCountsHasBeenSet() const { return m_slotMatchResultCountsHasBeenSet; } /** *The number of matched and mismatched results for slot resolution for the * slot.
*/ inline void SetSlotMatchResultCounts(const Aws::MapThe number of matched and mismatched results for slot resolution for the * slot.
*/ inline void SetSlotMatchResultCounts(Aws::MapThe number of matched and mismatched results for slot resolution for the * slot.
*/ inline SlotResolutionTestResultItemCounts& WithSlotMatchResultCounts(const Aws::MapThe number of matched and mismatched results for slot resolution for the * slot.
*/ inline SlotResolutionTestResultItemCounts& WithSlotMatchResultCounts(Aws::MapThe number of matched and mismatched results for slot resolution for the * slot.
*/ inline SlotResolutionTestResultItemCounts& AddSlotMatchResultCounts(const TestResultMatchStatus& key, int value) { m_slotMatchResultCountsHasBeenSet = true; m_slotMatchResultCounts.emplace(key, value); return *this; } /** *The number of matched and mismatched results for slot resolution for the * slot.
*/ inline SlotResolutionTestResultItemCounts& AddSlotMatchResultCounts(TestResultMatchStatus&& key, int value) { m_slotMatchResultCountsHasBeenSet = true; m_slotMatchResultCounts.emplace(std::move(key), value); return *this; } private: int m_totalResultCount; bool m_totalResultCountHasBeenSet = false; Aws::Map