AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
Logo.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/LogoSet.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
32 class Logo
33 {
34 public:
35 AWS_QUICKSIGHT_API Logo() = default;
36 AWS_QUICKSIGHT_API Logo(Aws::Utils::Json::JsonView jsonValue);
37 AWS_QUICKSIGHT_API Logo& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetAltText() const { return m_altText; }
46 inline bool AltTextHasBeenSet() const { return m_altTextHasBeenSet; }
47 template<typename AltTextT = Aws::String>
48 void SetAltText(AltTextT&& value) { m_altTextHasBeenSet = true; m_altText = std::forward<AltTextT>(value); }
49 template<typename AltTextT = Aws::String>
50 Logo& WithAltText(AltTextT&& value) { SetAltText(std::forward<AltTextT>(value)); return *this;}
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) { m_logoSetHasBeenSet = true; m_logoSet = std::forward<LogoSetT>(value); }
61 template<typename LogoSetT = LogoSet>
62 Logo& WithLogoSet(LogoSetT&& value) { SetLogoSet(std::forward<LogoSetT>(value)); return *this;}
64 private:
65
66 Aws::String m_altText;
67 bool m_altTextHasBeenSet = false;
68
69 LogoSet m_logoSet;
70 bool m_logoSetHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace QuickSight
75} // 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:46
AWS_QUICKSIGHT_API Logo()=default
AWS_QUICKSIGHT_API Logo(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetAltText() const
Definition Logo.h:45
Logo & WithAltText(AltTextT &&value)
Definition Logo.h:50
Logo & WithLogoSet(LogoSetT &&value)
Definition Logo.h:62
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:48
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue