/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information on any TranscriptFilterType
categories that
* matched your transcription output. Matches are identified for each segment upon
* completion of that segment.See Also:
AWS
* API Reference
Lists the categories that were matched in your audio segment.
*/ inline const Aws::VectorLists the categories that were matched in your audio segment.
*/ inline bool MatchedCategoriesHasBeenSet() const { return m_matchedCategoriesHasBeenSet; } /** *Lists the categories that were matched in your audio segment.
*/ inline void SetMatchedCategories(const Aws::VectorLists the categories that were matched in your audio segment.
*/ inline void SetMatchedCategories(Aws::VectorLists the categories that were matched in your audio segment.
*/ inline CategoryEvent& WithMatchedCategories(const Aws::VectorLists the categories that were matched in your audio segment.
*/ inline CategoryEvent& WithMatchedCategories(Aws::VectorLists the categories that were matched in your audio segment.
*/ inline CategoryEvent& AddMatchedCategories(const Aws::String& value) { m_matchedCategoriesHasBeenSet = true; m_matchedCategories.push_back(value); return *this; } /** *Lists the categories that were matched in your audio segment.
*/ inline CategoryEvent& AddMatchedCategories(Aws::String&& value) { m_matchedCategoriesHasBeenSet = true; m_matchedCategories.push_back(std::move(value)); return *this; } /** *Lists the categories that were matched in your audio segment.
*/ inline CategoryEvent& AddMatchedCategories(const char* value) { m_matchedCategoriesHasBeenSet = true; m_matchedCategories.push_back(value); return *this; } /** *Contains information about the matched categories, including category names * and timestamps.
*/ inline const Aws::MapContains information about the matched categories, including category names * and timestamps.
*/ inline bool MatchedDetailsHasBeenSet() const { return m_matchedDetailsHasBeenSet; } /** *Contains information about the matched categories, including category names * and timestamps.
*/ inline void SetMatchedDetails(const Aws::MapContains information about the matched categories, including category names * and timestamps.
*/ inline void SetMatchedDetails(Aws::MapContains information about the matched categories, including category names * and timestamps.
*/ inline CategoryEvent& WithMatchedDetails(const Aws::MapContains information about the matched categories, including category names * and timestamps.
*/ inline CategoryEvent& WithMatchedDetails(Aws::MapContains information about the matched categories, including category names * and timestamps.
*/ inline CategoryEvent& AddMatchedDetails(const Aws::String& key, const PointsOfInterest& value) { m_matchedDetailsHasBeenSet = true; m_matchedDetails.emplace(key, value); return *this; } /** *Contains information about the matched categories, including category names * and timestamps.
*/ inline CategoryEvent& AddMatchedDetails(Aws::String&& key, const PointsOfInterest& value) { m_matchedDetailsHasBeenSet = true; m_matchedDetails.emplace(std::move(key), value); return *this; } /** *Contains information about the matched categories, including category names * and timestamps.
*/ inline CategoryEvent& AddMatchedDetails(const Aws::String& key, PointsOfInterest&& value) { m_matchedDetailsHasBeenSet = true; m_matchedDetails.emplace(key, std::move(value)); return *this; } /** *Contains information about the matched categories, including category names * and timestamps.
*/ inline CategoryEvent& AddMatchedDetails(Aws::String&& key, PointsOfInterest&& value) { m_matchedDetailsHasBeenSet = true; m_matchedDetails.emplace(std::move(key), std::move(value)); return *this; } /** *Contains information about the matched categories, including category names * and timestamps.
*/ inline CategoryEvent& AddMatchedDetails(const char* key, PointsOfInterest&& value) { m_matchedDetailsHasBeenSet = true; m_matchedDetails.emplace(key, std::move(value)); return *this; } /** *Contains information about the matched categories, including category names * and timestamps.
*/ inline CategoryEvent& AddMatchedDetails(const char* key, const PointsOfInterest& value) { m_matchedDetailsHasBeenSet = true; m_matchedDetails.emplace(key, value); return *this; } private: Aws::Vector