AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UnaggregatedField.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/ColumnIdentifier.h>
10#include <aws/quicksight/model/FormatConfiguration.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 UnaggregatedField();
37 AWS_QUICKSIGHT_API UnaggregatedField(Aws::Utils::Json::JsonView jsonValue);
39 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetFieldId() const{ return m_fieldId; }
47 inline bool FieldIdHasBeenSet() const { return m_fieldIdHasBeenSet; }
48 inline void SetFieldId(const Aws::String& value) { m_fieldIdHasBeenSet = true; m_fieldId = value; }
49 inline void SetFieldId(Aws::String&& value) { m_fieldIdHasBeenSet = true; m_fieldId = std::move(value); }
50 inline void SetFieldId(const char* value) { m_fieldIdHasBeenSet = true; m_fieldId.assign(value); }
51 inline UnaggregatedField& WithFieldId(const Aws::String& value) { SetFieldId(value); return *this;}
52 inline UnaggregatedField& WithFieldId(Aws::String&& value) { SetFieldId(std::move(value)); return *this;}
53 inline UnaggregatedField& WithFieldId(const char* value) { SetFieldId(value); return *this;}
55
57
60 inline const ColumnIdentifier& GetColumn() const{ return m_column; }
61 inline bool ColumnHasBeenSet() const { return m_columnHasBeenSet; }
62 inline void SetColumn(const ColumnIdentifier& value) { m_columnHasBeenSet = true; m_column = value; }
63 inline void SetColumn(ColumnIdentifier&& value) { m_columnHasBeenSet = true; m_column = std::move(value); }
64 inline UnaggregatedField& WithColumn(const ColumnIdentifier& value) { SetColumn(value); return *this;}
65 inline UnaggregatedField& WithColumn(ColumnIdentifier&& value) { SetColumn(std::move(value)); return *this;}
67
69
72 inline const FormatConfiguration& GetFormatConfiguration() const{ return m_formatConfiguration; }
73 inline bool FormatConfigurationHasBeenSet() const { return m_formatConfigurationHasBeenSet; }
74 inline void SetFormatConfiguration(const FormatConfiguration& value) { m_formatConfigurationHasBeenSet = true; m_formatConfiguration = value; }
75 inline void SetFormatConfiguration(FormatConfiguration&& value) { m_formatConfigurationHasBeenSet = true; m_formatConfiguration = std::move(value); }
77 inline UnaggregatedField& WithFormatConfiguration(FormatConfiguration&& value) { SetFormatConfiguration(std::move(value)); return *this;}
79 private:
80
81 Aws::String m_fieldId;
82 bool m_fieldIdHasBeenSet = false;
83
84 ColumnIdentifier m_column;
85 bool m_columnHasBeenSet = false;
86
87 FormatConfiguration m_formatConfiguration;
88 bool m_formatConfigurationHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace QuickSight
93} // namespace Aws
const FormatConfiguration & GetFormatConfiguration() const
void SetColumn(ColumnIdentifier &&value)
UnaggregatedField & WithFieldId(Aws::String &&value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
UnaggregatedField & WithColumn(const ColumnIdentifier &value)
AWS_QUICKSIGHT_API UnaggregatedField & operator=(Aws::Utils::Json::JsonView jsonValue)
UnaggregatedField & WithFieldId(const char *value)
const ColumnIdentifier & GetColumn() const
void SetFormatConfiguration(const FormatConfiguration &value)
UnaggregatedField & WithFieldId(const Aws::String &value)
UnaggregatedField & WithFormatConfiguration(FormatConfiguration &&value)
void SetFieldId(const Aws::String &value)
UnaggregatedField & WithFormatConfiguration(const FormatConfiguration &value)
AWS_QUICKSIGHT_API UnaggregatedField(Aws::Utils::Json::JsonView jsonValue)
UnaggregatedField & WithColumn(ColumnIdentifier &&value)
void SetFormatConfiguration(FormatConfiguration &&value)
void SetColumn(const ColumnIdentifier &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue