AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
LogoConfiguration.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/LogoSetConfiguration.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace QuickSight {
21namespace Model {
22
29 public:
30 AWS_QUICKSIGHT_API LogoConfiguration() = default;
31 AWS_QUICKSIGHT_API LogoConfiguration(Aws::Utils::Json::JsonView jsonValue);
33 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetAltText() const { return m_altText; }
40 inline bool AltTextHasBeenSet() const { return m_altTextHasBeenSet; }
41 template <typename AltTextT = Aws::String>
42 void SetAltText(AltTextT&& value) {
43 m_altTextHasBeenSet = true;
44 m_altText = std::forward<AltTextT>(value);
45 }
46 template <typename AltTextT = Aws::String>
47 LogoConfiguration& WithAltText(AltTextT&& value) {
48 SetAltText(std::forward<AltTextT>(value));
49 return *this;
50 }
52
54
57 inline const LogoSetConfiguration& GetLogoSet() const { return m_logoSet; }
58 inline bool LogoSetHasBeenSet() const { return m_logoSetHasBeenSet; }
59 template <typename LogoSetT = LogoSetConfiguration>
60 void SetLogoSet(LogoSetT&& value) {
61 m_logoSetHasBeenSet = true;
62 m_logoSet = std::forward<LogoSetT>(value);
63 }
64 template <typename LogoSetT = LogoSetConfiguration>
65 LogoConfiguration& WithLogoSet(LogoSetT&& value) {
66 SetLogoSet(std::forward<LogoSetT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_altText;
72
73 LogoSetConfiguration m_logoSet;
74 bool m_altTextHasBeenSet = false;
75 bool m_logoSetHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace QuickSight
80} // namespace Aws
AWS_QUICKSIGHT_API LogoConfiguration()=default
LogoConfiguration & WithAltText(AltTextT &&value)
LogoConfiguration & WithLogoSet(LogoSetT &&value)
AWS_QUICKSIGHT_API LogoConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API LogoConfiguration(Aws::Utils::Json::JsonView jsonValue)
const LogoSetConfiguration & GetLogoSet() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue