AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
LogoSetConfiguration.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/ImageSetConfiguration.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace QuickSight {
20namespace Model {
21
28 public:
29 AWS_QUICKSIGHT_API LogoSetConfiguration() = default;
30 AWS_QUICKSIGHT_API LogoSetConfiguration(Aws::Utils::Json::JsonView jsonValue);
32 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
33
35
38 inline const ImageSetConfiguration& GetPrimary() const { return m_primary; }
39 inline bool PrimaryHasBeenSet() const { return m_primaryHasBeenSet; }
40 template <typename PrimaryT = ImageSetConfiguration>
41 void SetPrimary(PrimaryT&& value) {
42 m_primaryHasBeenSet = true;
43 m_primary = std::forward<PrimaryT>(value);
44 }
45 template <typename PrimaryT = ImageSetConfiguration>
46 LogoSetConfiguration& WithPrimary(PrimaryT&& value) {
47 SetPrimary(std::forward<PrimaryT>(value));
48 return *this;
49 }
51
53
56 inline const ImageSetConfiguration& GetFavicon() const { return m_favicon; }
57 inline bool FaviconHasBeenSet() const { return m_faviconHasBeenSet; }
58 template <typename FaviconT = ImageSetConfiguration>
59 void SetFavicon(FaviconT&& value) {
60 m_faviconHasBeenSet = true;
61 m_favicon = std::forward<FaviconT>(value);
62 }
63 template <typename FaviconT = ImageSetConfiguration>
64 LogoSetConfiguration& WithFavicon(FaviconT&& value) {
65 SetFavicon(std::forward<FaviconT>(value));
66 return *this;
67 }
69 private:
70 ImageSetConfiguration m_primary;
71
72 ImageSetConfiguration m_favicon;
73 bool m_primaryHasBeenSet = false;
74 bool m_faviconHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace QuickSight
79} // namespace Aws
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
const ImageSetConfiguration & GetFavicon() const
LogoSetConfiguration & WithFavicon(FaviconT &&value)
LogoSetConfiguration & WithPrimary(PrimaryT &&value)
AWS_QUICKSIGHT_API LogoSetConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API LogoSetConfiguration()=default
const ImageSetConfiguration & GetPrimary() const
AWS_QUICKSIGHT_API LogoSetConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue