AWS SDK for C++

AWS SDK for C++ Version 1.11.746

Loading...
Searching...
No Matches
BrandDefinition.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSight_EXPORTS.h>
9#include <aws/quicksight/model/ApplicationTheme.h>
10#include <aws/quicksight/model/LogoConfiguration.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace QuickSight {
22namespace Model {
23
30 public:
31 AWS_QUICKSIGHT_API BrandDefinition() = default;
32 AWS_QUICKSIGHT_API BrandDefinition(Aws::Utils::Json::JsonView jsonValue);
34 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetBrandName() const { return m_brandName; }
41 inline bool BrandNameHasBeenSet() const { return m_brandNameHasBeenSet; }
42 template <typename BrandNameT = Aws::String>
43 void SetBrandName(BrandNameT&& value) {
44 m_brandNameHasBeenSet = true;
45 m_brandName = std::forward<BrandNameT>(value);
46 }
47 template <typename BrandNameT = Aws::String>
48 BrandDefinition& WithBrandName(BrandNameT&& value) {
49 SetBrandName(std::forward<BrandNameT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetDescription() const { return m_description; }
59 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
60 template <typename DescriptionT = Aws::String>
61 void SetDescription(DescriptionT&& value) {
62 m_descriptionHasBeenSet = true;
63 m_description = std::forward<DescriptionT>(value);
64 }
65 template <typename DescriptionT = Aws::String>
66 BrandDefinition& WithDescription(DescriptionT&& value) {
67 SetDescription(std::forward<DescriptionT>(value));
68 return *this;
69 }
71
73
76 inline const ApplicationTheme& GetApplicationTheme() const { return m_applicationTheme; }
77 inline bool ApplicationThemeHasBeenSet() const { return m_applicationThemeHasBeenSet; }
78 template <typename ApplicationThemeT = ApplicationTheme>
79 void SetApplicationTheme(ApplicationThemeT&& value) {
80 m_applicationThemeHasBeenSet = true;
81 m_applicationTheme = std::forward<ApplicationThemeT>(value);
82 }
83 template <typename ApplicationThemeT = ApplicationTheme>
84 BrandDefinition& WithApplicationTheme(ApplicationThemeT&& value) {
85 SetApplicationTheme(std::forward<ApplicationThemeT>(value));
86 return *this;
87 }
89
91
94 inline const LogoConfiguration& GetLogoConfiguration() const { return m_logoConfiguration; }
95 inline bool LogoConfigurationHasBeenSet() const { return m_logoConfigurationHasBeenSet; }
96 template <typename LogoConfigurationT = LogoConfiguration>
97 void SetLogoConfiguration(LogoConfigurationT&& value) {
98 m_logoConfigurationHasBeenSet = true;
99 m_logoConfiguration = std::forward<LogoConfigurationT>(value);
100 }
101 template <typename LogoConfigurationT = LogoConfiguration>
102 BrandDefinition& WithLogoConfiguration(LogoConfigurationT&& value) {
103 SetLogoConfiguration(std::forward<LogoConfigurationT>(value));
104 return *this;
105 }
107 private:
108 Aws::String m_brandName;
109
110 Aws::String m_description;
111
112 ApplicationTheme m_applicationTheme;
113
114 LogoConfiguration m_logoConfiguration;
115 bool m_brandNameHasBeenSet = false;
116 bool m_descriptionHasBeenSet = false;
117 bool m_applicationThemeHasBeenSet = false;
118 bool m_logoConfigurationHasBeenSet = false;
119};
120
121} // namespace Model
122} // namespace QuickSight
123} // namespace Aws
const ApplicationTheme & GetApplicationTheme() const
BrandDefinition & WithDescription(DescriptionT &&value)
BrandDefinition & WithBrandName(BrandNameT &&value)
void SetDescription(DescriptionT &&value)
BrandDefinition & WithApplicationTheme(ApplicationThemeT &&value)
AWS_QUICKSIGHT_API BrandDefinition()=default
const LogoConfiguration & GetLogoConfiguration() const
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
void SetLogoConfiguration(LogoConfigurationT &&value)
void SetApplicationTheme(ApplicationThemeT &&value)
AWS_QUICKSIGHT_API BrandDefinition(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetDescription() const
const Aws::String & GetBrandName() const
BrandDefinition & WithLogoConfiguration(LogoConfigurationT &&value)
AWS_QUICKSIGHT_API BrandDefinition & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue