AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
LexFlowNodeConfiguration.h
1
6#pragma once
7#include <aws/bedrock-agent/BedrockAgent_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace BedrockAgent
22{
23namespace Model
24{
25
37 {
38 public:
39 AWS_BEDROCKAGENT_API LexFlowNodeConfiguration();
42 AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline const Aws::String& GetBotAliasArn() const{ return m_botAliasArn; }
50 inline bool BotAliasArnHasBeenSet() const { return m_botAliasArnHasBeenSet; }
51 inline void SetBotAliasArn(const Aws::String& value) { m_botAliasArnHasBeenSet = true; m_botAliasArn = value; }
52 inline void SetBotAliasArn(Aws::String&& value) { m_botAliasArnHasBeenSet = true; m_botAliasArn = std::move(value); }
53 inline void SetBotAliasArn(const char* value) { m_botAliasArnHasBeenSet = true; m_botAliasArn.assign(value); }
54 inline LexFlowNodeConfiguration& WithBotAliasArn(const Aws::String& value) { SetBotAliasArn(value); return *this;}
55 inline LexFlowNodeConfiguration& WithBotAliasArn(Aws::String&& value) { SetBotAliasArn(std::move(value)); return *this;}
56 inline LexFlowNodeConfiguration& WithBotAliasArn(const char* value) { SetBotAliasArn(value); return *this;}
58
60
63 inline const Aws::String& GetLocaleId() const{ return m_localeId; }
64 inline bool LocaleIdHasBeenSet() const { return m_localeIdHasBeenSet; }
65 inline void SetLocaleId(const Aws::String& value) { m_localeIdHasBeenSet = true; m_localeId = value; }
66 inline void SetLocaleId(Aws::String&& value) { m_localeIdHasBeenSet = true; m_localeId = std::move(value); }
67 inline void SetLocaleId(const char* value) { m_localeIdHasBeenSet = true; m_localeId.assign(value); }
68 inline LexFlowNodeConfiguration& WithLocaleId(const Aws::String& value) { SetLocaleId(value); return *this;}
69 inline LexFlowNodeConfiguration& WithLocaleId(Aws::String&& value) { SetLocaleId(std::move(value)); return *this;}
70 inline LexFlowNodeConfiguration& WithLocaleId(const char* value) { SetLocaleId(value); return *this;}
72 private:
73
74 Aws::String m_botAliasArn;
75 bool m_botAliasArnHasBeenSet = false;
76
77 Aws::String m_localeId;
78 bool m_localeIdHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace BedrockAgent
83} // namespace Aws
LexFlowNodeConfiguration & WithBotAliasArn(const char *value)
AWS_BEDROCKAGENT_API LexFlowNodeConfiguration(Aws::Utils::Json::JsonView jsonValue)
LexFlowNodeConfiguration & WithBotAliasArn(const Aws::String &value)
LexFlowNodeConfiguration & WithBotAliasArn(Aws::String &&value)
AWS_BEDROCKAGENT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_BEDROCKAGENT_API LexFlowNodeConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
LexFlowNodeConfiguration & WithLocaleId(Aws::String &&value)
LexFlowNodeConfiguration & WithLocaleId(const Aws::String &value)
LexFlowNodeConfiguration & WithLocaleId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue