AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TableFieldCustomTextContent.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/quicksight/model/FontConfiguration.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 QuickSight
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_QUICKSIGHT_API TableFieldCustomTextContent();
39 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetValue() const{ return m_value; }
48 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
49 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
50 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
51 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
52 inline TableFieldCustomTextContent& WithValue(const Aws::String& value) { SetValue(value); return *this;}
53 inline TableFieldCustomTextContent& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
54 inline TableFieldCustomTextContent& WithValue(const char* value) { SetValue(value); return *this;}
56
58
62 inline const FontConfiguration& GetFontConfiguration() const{ return m_fontConfiguration; }
63 inline bool FontConfigurationHasBeenSet() const { return m_fontConfigurationHasBeenSet; }
64 inline void SetFontConfiguration(const FontConfiguration& value) { m_fontConfigurationHasBeenSet = true; m_fontConfiguration = value; }
65 inline void SetFontConfiguration(FontConfiguration&& value) { m_fontConfigurationHasBeenSet = true; m_fontConfiguration = std::move(value); }
69 private:
70
71 Aws::String m_value;
72 bool m_valueHasBeenSet = false;
73
74 FontConfiguration m_fontConfiguration;
75 bool m_fontConfigurationHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace QuickSight
80} // namespace Aws
TableFieldCustomTextContent & WithFontConfiguration(const FontConfiguration &value)
TableFieldCustomTextContent & WithValue(const char *value)
TableFieldCustomTextContent & WithFontConfiguration(FontConfiguration &&value)
TableFieldCustomTextContent & WithValue(const Aws::String &value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API TableFieldCustomTextContent & operator=(Aws::Utils::Json::JsonView jsonValue)
TableFieldCustomTextContent & WithValue(Aws::String &&value)
AWS_QUICKSIGHT_API TableFieldCustomTextContent(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue