AWS SDK for C++

AWS SDK for C++ Version 1.11.745

Loading...
Searching...
No Matches
Logo.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/LogoSet.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
28class Logo {
29 public:
30 AWS_QUICKSIGHT_API Logo() = default;
31 AWS_QUICKSIGHT_API Logo(Aws::Utils::Json::JsonView jsonValue);
32 AWS_QUICKSIGHT_API Logo& operator=(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 Logo& WithAltText(AltTextT&& value) {
48 SetAltText(std::forward<AltTextT>(value));
49 return *this;
50 }
52
54
57 inline const LogoSet& GetLogoSet() const { return m_logoSet; }
58 inline bool LogoSetHasBeenSet() const { return m_logoSetHasBeenSet; }
59 template <typename LogoSetT = LogoSet>
60 void SetLogoSet(LogoSetT&& value) {
61 m_logoSetHasBeenSet = true;
62 m_logoSet = std::forward<LogoSetT>(value);
63 }
64 template <typename LogoSetT = LogoSet>
65 Logo& WithLogoSet(LogoSetT&& value) {
66 SetLogoSet(std::forward<LogoSetT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_altText;
72
73 LogoSet m_logoSet;
74 bool m_altTextHasBeenSet = false;
75 bool m_logoSetHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace QuickSight
80} // namespace Aws
bool LogoSetHasBeenSet() const
Definition Logo.h:58
AWS_QUICKSIGHT_API Logo & operator=(Aws::Utils::Json::JsonView jsonValue)
bool AltTextHasBeenSet() const
Definition Logo.h:40
AWS_QUICKSIGHT_API Logo()=default
AWS_QUICKSIGHT_API Logo(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetAltText() const
Definition Logo.h:39
Logo & WithAltText(AltTextT &&value)
Definition Logo.h:47
Logo & WithLogoSet(LogoSetT &&value)
Definition Logo.h:65
void SetLogoSet(LogoSetT &&value)
Definition Logo.h:60
const LogoSet & GetLogoSet() const
Definition Logo.h:57
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
void SetAltText(AltTextT &&value)
Definition Logo.h:42
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue