AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
HeaderFooterSectionConfiguration.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/SectionLayoutConfiguration.h>
10#include <aws/quicksight/model/SectionStyle.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace QuickSight
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_QUICKSIGHT_API HeaderFooterSectionConfiguration() = default;
40 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetSectionId() const { return m_sectionId; }
48 inline bool SectionIdHasBeenSet() const { return m_sectionIdHasBeenSet; }
49 template<typename SectionIdT = Aws::String>
50 void SetSectionId(SectionIdT&& value) { m_sectionIdHasBeenSet = true; m_sectionId = std::forward<SectionIdT>(value); }
51 template<typename SectionIdT = Aws::String>
52 HeaderFooterSectionConfiguration& WithSectionId(SectionIdT&& value) { SetSectionId(std::forward<SectionIdT>(value)); return *this;}
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) { m_layoutHasBeenSet = true; m_layout = std::forward<LayoutT>(value); }
63 template<typename LayoutT = SectionLayoutConfiguration>
64 HeaderFooterSectionConfiguration& WithLayout(LayoutT&& value) { SetLayout(std::forward<LayoutT>(value)); return *this;}
66
68
71 inline const SectionStyle& GetStyle() const { return m_style; }
72 inline bool StyleHasBeenSet() const { return m_styleHasBeenSet; }
73 template<typename StyleT = SectionStyle>
74 void SetStyle(StyleT&& value) { m_styleHasBeenSet = true; m_style = std::forward<StyleT>(value); }
75 template<typename StyleT = SectionStyle>
76 HeaderFooterSectionConfiguration& WithStyle(StyleT&& value) { SetStyle(std::forward<StyleT>(value)); return *this;}
78 private:
79
80 Aws::String m_sectionId;
81 bool m_sectionIdHasBeenSet = false;
82
84 bool m_layoutHasBeenSet = false;
85
86 SectionStyle m_style;
87 bool m_styleHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace QuickSight
92} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue