AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
OutputColumn.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/ColumnDataType.h>
10#include <aws/quicksight/model/ColumnDataSubType.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
34 {
35 public:
36 AWS_QUICKSIGHT_API OutputColumn() = default;
37 AWS_QUICKSIGHT_API OutputColumn(Aws::Utils::Json::JsonView jsonValue);
38 AWS_QUICKSIGHT_API OutputColumn& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetName() const { return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 template<typename NameT = Aws::String>
49 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
50 template<typename NameT = Aws::String>
51 OutputColumn& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
53
55
58 inline const Aws::String& GetDescription() const { return m_description; }
59 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
60 template<typename DescriptionT = Aws::String>
61 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
62 template<typename DescriptionT = Aws::String>
63 OutputColumn& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
65
67
70 inline ColumnDataType GetType() const { return m_type; }
71 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
72 inline void SetType(ColumnDataType value) { m_typeHasBeenSet = true; m_type = value; }
73 inline OutputColumn& WithType(ColumnDataType value) { SetType(value); return *this;}
75
77
80 inline ColumnDataSubType GetSubType() const { return m_subType; }
81 inline bool SubTypeHasBeenSet() const { return m_subTypeHasBeenSet; }
82 inline void SetSubType(ColumnDataSubType value) { m_subTypeHasBeenSet = true; m_subType = value; }
83 inline OutputColumn& WithSubType(ColumnDataSubType value) { SetSubType(value); return *this;}
85 private:
86
87 Aws::String m_name;
88 bool m_nameHasBeenSet = false;
89
90 Aws::String m_description;
91 bool m_descriptionHasBeenSet = false;
92
94 bool m_typeHasBeenSet = false;
95
97 bool m_subTypeHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace QuickSight
102} // namespace Aws
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetDescription() const
void SetSubType(ColumnDataSubType value)
void SetDescription(DescriptionT &&value)
AWS_QUICKSIGHT_API OutputColumn & operator=(Aws::Utils::Json::JsonView jsonValue)
OutputColumn & WithDescription(DescriptionT &&value)
ColumnDataSubType GetSubType() const
OutputColumn & WithType(ColumnDataType value)
OutputColumn & WithSubType(ColumnDataSubType value)
void SetType(ColumnDataType value)
AWS_QUICKSIGHT_API OutputColumn(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API OutputColumn()=default
OutputColumn & WithName(NameT &&value)
const Aws::String & GetName() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue