AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Layout.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/LayoutConfiguration.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
36 class Layout
37 {
38 public:
39 AWS_QUICKSIGHT_API Layout();
40 AWS_QUICKSIGHT_API Layout(Aws::Utils::Json::JsonView jsonValue);
41 AWS_QUICKSIGHT_API Layout& operator=(Aws::Utils::Json::JsonView jsonValue);
42 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline const LayoutConfiguration& GetConfiguration() const{ return m_configuration; }
50 inline bool ConfigurationHasBeenSet() const { return m_configurationHasBeenSet; }
51 inline void SetConfiguration(const LayoutConfiguration& value) { m_configurationHasBeenSet = true; m_configuration = value; }
52 inline void SetConfiguration(LayoutConfiguration&& value) { m_configurationHasBeenSet = true; m_configuration = std::move(value); }
53 inline Layout& WithConfiguration(const LayoutConfiguration& value) { SetConfiguration(value); return *this;}
54 inline Layout& WithConfiguration(LayoutConfiguration&& value) { SetConfiguration(std::move(value)); return *this;}
56 private:
57
58 LayoutConfiguration m_configuration;
59 bool m_configurationHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace QuickSight
64} // namespace Aws
bool ConfigurationHasBeenSet() const
Definition Layout.h:50
AWS_QUICKSIGHT_API Layout & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API Layout(Aws::Utils::Json::JsonView jsonValue)
void SetConfiguration(LayoutConfiguration &&value)
Definition Layout.h:52
const LayoutConfiguration & GetConfiguration() const
Definition Layout.h:49
void SetConfiguration(const LayoutConfiguration &value)
Definition Layout.h:51
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API Layout()
Layout & WithConfiguration(LayoutConfiguration &&value)
Definition Layout.h:54
Layout & WithConfiguration(const LayoutConfiguration &value)
Definition Layout.h:53
Aws::Utils::Json::JsonValue JsonValue