AWS SDK for C++

AWS SDK for C++ Version 1.11.758

Loading...
Searching...
No Matches
BotRecommendationResults.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/lexv2-models/LexModelsV2_EXPORTS.h>
9#include <aws/lexv2-models/model/BotRecommendationResultStatistics.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace LexModelsV2 {
21namespace Model {
22
31 public:
32 AWS_LEXMODELSV2_API BotRecommendationResults() = default;
35 AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetBotLocaleExportUrl() const { return m_botLocaleExportUrl; }
42 inline bool BotLocaleExportUrlHasBeenSet() const { return m_botLocaleExportUrlHasBeenSet; }
43 template <typename BotLocaleExportUrlT = Aws::String>
44 void SetBotLocaleExportUrl(BotLocaleExportUrlT&& value) {
45 m_botLocaleExportUrlHasBeenSet = true;
46 m_botLocaleExportUrl = std::forward<BotLocaleExportUrlT>(value);
47 }
48 template <typename BotLocaleExportUrlT = Aws::String>
49 BotRecommendationResults& WithBotLocaleExportUrl(BotLocaleExportUrlT&& value) {
50 SetBotLocaleExportUrl(std::forward<BotLocaleExportUrlT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetAssociatedTranscriptsUrl() const { return m_associatedTranscriptsUrl; }
60 inline bool AssociatedTranscriptsUrlHasBeenSet() const { return m_associatedTranscriptsUrlHasBeenSet; }
61 template <typename AssociatedTranscriptsUrlT = Aws::String>
62 void SetAssociatedTranscriptsUrl(AssociatedTranscriptsUrlT&& value) {
63 m_associatedTranscriptsUrlHasBeenSet = true;
64 m_associatedTranscriptsUrl = std::forward<AssociatedTranscriptsUrlT>(value);
65 }
66 template <typename AssociatedTranscriptsUrlT = Aws::String>
67 BotRecommendationResults& WithAssociatedTranscriptsUrl(AssociatedTranscriptsUrlT&& value) {
68 SetAssociatedTranscriptsUrl(std::forward<AssociatedTranscriptsUrlT>(value));
69 return *this;
70 }
72
74
77 inline const BotRecommendationResultStatistics& GetStatistics() const { return m_statistics; }
78 inline bool StatisticsHasBeenSet() const { return m_statisticsHasBeenSet; }
79 template <typename StatisticsT = BotRecommendationResultStatistics>
80 void SetStatistics(StatisticsT&& value) {
81 m_statisticsHasBeenSet = true;
82 m_statistics = std::forward<StatisticsT>(value);
83 }
84 template <typename StatisticsT = BotRecommendationResultStatistics>
86 SetStatistics(std::forward<StatisticsT>(value));
87 return *this;
88 }
90 private:
91 Aws::String m_botLocaleExportUrl;
92
93 Aws::String m_associatedTranscriptsUrl;
94
96 bool m_botLocaleExportUrlHasBeenSet = false;
97 bool m_associatedTranscriptsUrlHasBeenSet = false;
98 bool m_statisticsHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace LexModelsV2
103} // namespace Aws
const BotRecommendationResultStatistics & GetStatistics() const
BotRecommendationResults & WithStatistics(StatisticsT &&value)
AWS_LEXMODELSV2_API BotRecommendationResults & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LEXMODELSV2_API BotRecommendationResults(Aws::Utils::Json::JsonView jsonValue)
AWS_LEXMODELSV2_API BotRecommendationResults()=default
AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const
void SetAssociatedTranscriptsUrl(AssociatedTranscriptsUrlT &&value)
BotRecommendationResults & WithAssociatedTranscriptsUrl(AssociatedTranscriptsUrlT &&value)
BotRecommendationResults & WithBotLocaleExportUrl(BotLocaleExportUrlT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue