AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
HeaderFooterSectionConfiguration.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/SectionLayoutConfiguration.h>
10#include <aws/quicksight/model/SectionStyle.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace QuickSight {
22namespace Model {
23
31 public:
32 AWS_QUICKSIGHT_API HeaderFooterSectionConfiguration() = default;
35 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetSectionId() const { return m_sectionId; }
42 inline bool SectionIdHasBeenSet() const { return m_sectionIdHasBeenSet; }
43 template <typename SectionIdT = Aws::String>
44 void SetSectionId(SectionIdT&& value) {
45 m_sectionIdHasBeenSet = true;
46 m_sectionId = std::forward<SectionIdT>(value);
47 }
48 template <typename SectionIdT = Aws::String>
50 SetSectionId(std::forward<SectionIdT>(value));
51 return *this;
52 }
54
56
59 inline const SectionLayoutConfiguration& GetLayout() const { return m_layout; }
60 inline bool LayoutHasBeenSet() const { return m_layoutHasBeenSet; }
61 template <typename LayoutT = SectionLayoutConfiguration>
62 void SetLayout(LayoutT&& value) {
63 m_layoutHasBeenSet = true;
64 m_layout = std::forward<LayoutT>(value);
65 }
66 template <typename LayoutT = SectionLayoutConfiguration>
68 SetLayout(std::forward<LayoutT>(value));
69 return *this;
70 }
72
74
77 inline const SectionStyle& GetStyle() const { return m_style; }
78 inline bool StyleHasBeenSet() const { return m_styleHasBeenSet; }
79 template <typename StyleT = SectionStyle>
80 void SetStyle(StyleT&& value) {
81 m_styleHasBeenSet = true;
82 m_style = std::forward<StyleT>(value);
83 }
84 template <typename StyleT = SectionStyle>
86 SetStyle(std::forward<StyleT>(value));
87 return *this;
88 }
90 private:
91 Aws::String m_sectionId;
92
94
95 SectionStyle m_style;
96 bool m_sectionIdHasBeenSet = false;
97 bool m_layoutHasBeenSet = false;
98 bool m_styleHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace QuickSight
103} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue