AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
FieldFolder.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace QuickSight
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_QUICKSIGHT_API FieldFolder() = default;
37 AWS_QUICKSIGHT_API FieldFolder(Aws::Utils::Json::JsonView jsonValue);
38 AWS_QUICKSIGHT_API FieldFolder& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetDescription() const { return m_description; }
47 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
48 template<typename DescriptionT = Aws::String>
49 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
50 template<typename DescriptionT = Aws::String>
51 FieldFolder& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
53
55
58 inline const Aws::Vector<Aws::String>& GetColumns() const { return m_columns; }
59 inline bool ColumnsHasBeenSet() const { return m_columnsHasBeenSet; }
60 template<typename ColumnsT = Aws::Vector<Aws::String>>
61 void SetColumns(ColumnsT&& value) { m_columnsHasBeenSet = true; m_columns = std::forward<ColumnsT>(value); }
62 template<typename ColumnsT = Aws::Vector<Aws::String>>
63 FieldFolder& WithColumns(ColumnsT&& value) { SetColumns(std::forward<ColumnsT>(value)); return *this;}
64 template<typename ColumnsT = Aws::String>
65 FieldFolder& AddColumns(ColumnsT&& value) { m_columnsHasBeenSet = true; m_columns.emplace_back(std::forward<ColumnsT>(value)); return *this; }
67 private:
68
69 Aws::String m_description;
70 bool m_descriptionHasBeenSet = false;
71
73 bool m_columnsHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace QuickSight
78} // namespace Aws
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API FieldFolder & operator=(Aws::Utils::Json::JsonView jsonValue)
FieldFolder & WithColumns(ColumnsT &&value)
Definition FieldFolder.h:63
FieldFolder & WithDescription(DescriptionT &&value)
Definition FieldFolder.h:51
AWS_QUICKSIGHT_API FieldFolder()=default
const Aws::Vector< Aws::String > & GetColumns() const
Definition FieldFolder.h:58
AWS_QUICKSIGHT_API FieldFolder(Aws::Utils::Json::JsonView jsonValue)
void SetColumns(ColumnsT &&value)
Definition FieldFolder.h:61
FieldFolder & AddColumns(ColumnsT &&value)
Definition FieldFolder.h:65
const Aws::String & GetDescription() const
Definition FieldFolder.h:46
void SetDescription(DescriptionT &&value)
Definition FieldFolder.h:49
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue