AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
ConversationLogsDataSource.h
1
6#pragma once
7#include <aws/lexv2-models/LexModelsV2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/lexv2-models/model/ConversationLogsDataSourceFilterBy.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace LexModelsV2
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_LEXMODELSV2_API ConversationLogsDataSource() = default;
38 AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetBotId() const { return m_botId; }
46 inline bool BotIdHasBeenSet() const { return m_botIdHasBeenSet; }
47 template<typename BotIdT = Aws::String>
48 void SetBotId(BotIdT&& value) { m_botIdHasBeenSet = true; m_botId = std::forward<BotIdT>(value); }
49 template<typename BotIdT = Aws::String>
50 ConversationLogsDataSource& WithBotId(BotIdT&& value) { SetBotId(std::forward<BotIdT>(value)); return *this;}
52
54
57 inline const Aws::String& GetBotAliasId() const { return m_botAliasId; }
58 inline bool BotAliasIdHasBeenSet() const { return m_botAliasIdHasBeenSet; }
59 template<typename BotAliasIdT = Aws::String>
60 void SetBotAliasId(BotAliasIdT&& value) { m_botAliasIdHasBeenSet = true; m_botAliasId = std::forward<BotAliasIdT>(value); }
61 template<typename BotAliasIdT = Aws::String>
62 ConversationLogsDataSource& WithBotAliasId(BotAliasIdT&& value) { SetBotAliasId(std::forward<BotAliasIdT>(value)); return *this;}
64
66
69 inline const Aws::String& GetLocaleId() const { return m_localeId; }
70 inline bool LocaleIdHasBeenSet() const { return m_localeIdHasBeenSet; }
71 template<typename LocaleIdT = Aws::String>
72 void SetLocaleId(LocaleIdT&& value) { m_localeIdHasBeenSet = true; m_localeId = std::forward<LocaleIdT>(value); }
73 template<typename LocaleIdT = Aws::String>
74 ConversationLogsDataSource& WithLocaleId(LocaleIdT&& value) { SetLocaleId(std::forward<LocaleIdT>(value)); return *this;}
76
78
81 inline const ConversationLogsDataSourceFilterBy& GetFilter() const { return m_filter; }
82 inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; }
83 template<typename FilterT = ConversationLogsDataSourceFilterBy>
84 void SetFilter(FilterT&& value) { m_filterHasBeenSet = true; m_filter = std::forward<FilterT>(value); }
85 template<typename FilterT = ConversationLogsDataSourceFilterBy>
86 ConversationLogsDataSource& WithFilter(FilterT&& value) { SetFilter(std::forward<FilterT>(value)); return *this;}
88 private:
89
90 Aws::String m_botId;
91 bool m_botIdHasBeenSet = false;
92
93 Aws::String m_botAliasId;
94 bool m_botAliasIdHasBeenSet = false;
95
96 Aws::String m_localeId;
97 bool m_localeIdHasBeenSet = false;
98
100 bool m_filterHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace LexModelsV2
105} // namespace Aws
ConversationLogsDataSource & WithBotAliasId(BotAliasIdT &&value)
AWS_LEXMODELSV2_API ConversationLogsDataSource & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LEXMODELSV2_API ConversationLogsDataSource()=default
ConversationLogsDataSource & WithLocaleId(LocaleIdT &&value)
const ConversationLogsDataSourceFilterBy & GetFilter() const
AWS_LEXMODELSV2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_LEXMODELSV2_API ConversationLogsDataSource(Aws::Utils::Json::JsonView jsonValue)
ConversationLogsDataSource & WithBotId(BotIdT &&value)
ConversationLogsDataSource & WithFilter(FilterT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue