AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetSectionId(const Aws::String& value) { m_sectionIdHasBeenSet = true; m_sectionId = value; }
50 inline void SetSectionId(Aws::String&& value) { m_sectionIdHasBeenSet = true; m_sectionId = std::move(value); }
51 inline void SetSectionId(const char* value) { m_sectionIdHasBeenSet = true; m_sectionId.assign(value); }
52 inline HeaderFooterSectionConfiguration& WithSectionId(const Aws::String& value) { SetSectionId(value); return *this;}
53 inline HeaderFooterSectionConfiguration& WithSectionId(Aws::String&& value) { SetSectionId(std::move(value)); return *this;}
54 inline HeaderFooterSectionConfiguration& WithSectionId(const char* value) { SetSectionId(value); return *this;}
56
58
61 inline const SectionLayoutConfiguration& GetLayout() const{ return m_layout; }
62 inline bool LayoutHasBeenSet() const { return m_layoutHasBeenSet; }
63 inline void SetLayout(const SectionLayoutConfiguration& value) { m_layoutHasBeenSet = true; m_layout = value; }
64 inline void SetLayout(SectionLayoutConfiguration&& value) { m_layoutHasBeenSet = true; m_layout = std::move(value); }
66 inline HeaderFooterSectionConfiguration& WithLayout(SectionLayoutConfiguration&& value) { SetLayout(std::move(value)); return *this;}
68
70
73 inline const SectionStyle& GetStyle() const{ return m_style; }
74 inline bool StyleHasBeenSet() const { return m_styleHasBeenSet; }
75 inline void SetStyle(const SectionStyle& value) { m_styleHasBeenSet = true; m_style = value; }
76 inline void SetStyle(SectionStyle&& value) { m_styleHasBeenSet = true; m_style = std::move(value); }
77 inline HeaderFooterSectionConfiguration& WithStyle(const SectionStyle& value) { SetStyle(value); return *this;}
78 inline HeaderFooterSectionConfiguration& WithStyle(SectionStyle&& value) { SetStyle(std::move(value)); return *this;}
80 private:
81
82 Aws::String m_sectionId;
83 bool m_sectionIdHasBeenSet = false;
84
86 bool m_layoutHasBeenSet = false;
87
88 SectionStyle m_style;
89 bool m_styleHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace QuickSight
94} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue