AWS SDK for C++

AWS SDK for C++ Version 1.11.684

Loading...
Searching...
No Matches
ChoiceContent.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/wellarchitected/WellArchitected_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace WellArchitected {
20namespace Model {
21
28 public:
29 AWS_WELLARCHITECTED_API ChoiceContent() = default;
30 AWS_WELLARCHITECTED_API ChoiceContent(Aws::Utils::Json::JsonView jsonValue);
31 AWS_WELLARCHITECTED_API ChoiceContent& operator=(Aws::Utils::Json::JsonView jsonValue);
32 AWS_WELLARCHITECTED_API Aws::Utils::Json::JsonValue Jsonize() const;
33
35
38 inline const Aws::String& GetDisplayText() const { return m_displayText; }
39 inline bool DisplayTextHasBeenSet() const { return m_displayTextHasBeenSet; }
40 template <typename DisplayTextT = Aws::String>
41 void SetDisplayText(DisplayTextT&& value) {
42 m_displayTextHasBeenSet = true;
43 m_displayText = std::forward<DisplayTextT>(value);
44 }
45 template <typename DisplayTextT = Aws::String>
46 ChoiceContent& WithDisplayText(DisplayTextT&& value) {
47 SetDisplayText(std::forward<DisplayTextT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetUrl() const { return m_url; }
57 inline bool UrlHasBeenSet() const { return m_urlHasBeenSet; }
58 template <typename UrlT = Aws::String>
59 void SetUrl(UrlT&& value) {
60 m_urlHasBeenSet = true;
61 m_url = std::forward<UrlT>(value);
62 }
63 template <typename UrlT = Aws::String>
64 ChoiceContent& WithUrl(UrlT&& value) {
65 SetUrl(std::forward<UrlT>(value));
66 return *this;
67 }
69 private:
70 Aws::String m_displayText;
71 bool m_displayTextHasBeenSet = false;
72
73 Aws::String m_url;
74 bool m_urlHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace WellArchitected
79} // namespace Aws
AWS_WELLARCHITECTED_API Aws::Utils::Json::JsonValue Jsonize() const
ChoiceContent & WithUrl(UrlT &&value)
AWS_WELLARCHITECTED_API ChoiceContent()=default
AWS_WELLARCHITECTED_API ChoiceContent & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_WELLARCHITECTED_API ChoiceContent(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetDisplayText() const
ChoiceContent & WithDisplayText(DisplayTextT &&value)
void SetDisplayText(DisplayTextT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue