AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ImageSet.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/Image.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace QuickSight
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_QUICKSIGHT_API ImageSet() = default;
35 AWS_QUICKSIGHT_API ImageSet(Aws::Utils::Json::JsonView jsonValue);
36 AWS_QUICKSIGHT_API ImageSet& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Image& GetOriginal() const { return m_original; }
45 inline bool OriginalHasBeenSet() const { return m_originalHasBeenSet; }
46 template<typename OriginalT = Image>
47 void SetOriginal(OriginalT&& value) { m_originalHasBeenSet = true; m_original = std::forward<OriginalT>(value); }
48 template<typename OriginalT = Image>
49 ImageSet& WithOriginal(OriginalT&& value) { SetOriginal(std::forward<OriginalT>(value)); return *this;}
51
53
56 inline const Image& GetHeight64() const { return m_height64; }
57 inline bool Height64HasBeenSet() const { return m_height64HasBeenSet; }
58 template<typename Height64T = Image>
59 void SetHeight64(Height64T&& value) { m_height64HasBeenSet = true; m_height64 = std::forward<Height64T>(value); }
60 template<typename Height64T = Image>
61 ImageSet& WithHeight64(Height64T&& value) { SetHeight64(std::forward<Height64T>(value)); return *this;}
63
65
68 inline const Image& GetHeight32() const { return m_height32; }
69 inline bool Height32HasBeenSet() const { return m_height32HasBeenSet; }
70 template<typename Height32T = Image>
71 void SetHeight32(Height32T&& value) { m_height32HasBeenSet = true; m_height32 = std::forward<Height32T>(value); }
72 template<typename Height32T = Image>
73 ImageSet& WithHeight32(Height32T&& value) { SetHeight32(std::forward<Height32T>(value)); return *this;}
75 private:
76
77 Image m_original;
78 bool m_originalHasBeenSet = false;
79
80 Image m_height64;
81 bool m_height64HasBeenSet = false;
82
83 Image m_height32;
84 bool m_height32HasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace QuickSight
89} // namespace Aws
ImageSet & WithHeight64(Height64T &&value)
Definition ImageSet.h:61
AWS_QUICKSIGHT_API ImageSet & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetHeight32(Height32T &&value)
Definition ImageSet.h:71
const Image & GetOriginal() const
Definition ImageSet.h:44
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
void SetOriginal(OriginalT &&value)
Definition ImageSet.h:47
ImageSet & WithHeight32(Height32T &&value)
Definition ImageSet.h:73
void SetHeight64(Height64T &&value)
Definition ImageSet.h:59
AWS_QUICKSIGHT_API ImageSet()=default
const Image & GetHeight64() const
Definition ImageSet.h:56
ImageSet & WithOriginal(OriginalT &&value)
Definition ImageSet.h:49
AWS_QUICKSIGHT_API ImageSet(Aws::Utils::Json::JsonView jsonValue)
const Image & GetHeight32() const
Definition ImageSet.h:68
Aws::Utils::Json::JsonValue JsonValue