AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DestinationParameterValueConfiguration.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/CustomValuesConfiguration.h>
9#include <aws/quicksight/model/SelectAllValueOptions.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/quicksight/model/ColumnIdentifier.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace QuickSight
25{
26namespace Model
27{
28
37 {
38 public:
42 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
50 inline const CustomValuesConfiguration& GetCustomValuesConfiguration() const{ return m_customValuesConfiguration; }
51 inline bool CustomValuesConfigurationHasBeenSet() const { return m_customValuesConfigurationHasBeenSet; }
52 inline void SetCustomValuesConfiguration(const CustomValuesConfiguration& value) { m_customValuesConfigurationHasBeenSet = true; m_customValuesConfiguration = value; }
53 inline void SetCustomValuesConfiguration(CustomValuesConfiguration&& value) { m_customValuesConfigurationHasBeenSet = true; m_customValuesConfiguration = std::move(value); }
57
59
62 inline const SelectAllValueOptions& GetSelectAllValueOptions() const{ return m_selectAllValueOptions; }
63 inline bool SelectAllValueOptionsHasBeenSet() const { return m_selectAllValueOptionsHasBeenSet; }
64 inline void SetSelectAllValueOptions(const SelectAllValueOptions& value) { m_selectAllValueOptionsHasBeenSet = true; m_selectAllValueOptions = value; }
65 inline void SetSelectAllValueOptions(SelectAllValueOptions&& value) { m_selectAllValueOptionsHasBeenSet = true; m_selectAllValueOptions = std::move(value); }
69
71
74 inline const Aws::String& GetSourceParameterName() const{ return m_sourceParameterName; }
75 inline bool SourceParameterNameHasBeenSet() const { return m_sourceParameterNameHasBeenSet; }
76 inline void SetSourceParameterName(const Aws::String& value) { m_sourceParameterNameHasBeenSet = true; m_sourceParameterName = value; }
77 inline void SetSourceParameterName(Aws::String&& value) { m_sourceParameterNameHasBeenSet = true; m_sourceParameterName = std::move(value); }
78 inline void SetSourceParameterName(const char* value) { m_sourceParameterNameHasBeenSet = true; m_sourceParameterName.assign(value); }
83
85
88 inline const Aws::String& GetSourceField() const{ return m_sourceField; }
89 inline bool SourceFieldHasBeenSet() const { return m_sourceFieldHasBeenSet; }
90 inline void SetSourceField(const Aws::String& value) { m_sourceFieldHasBeenSet = true; m_sourceField = value; }
91 inline void SetSourceField(Aws::String&& value) { m_sourceFieldHasBeenSet = true; m_sourceField = std::move(value); }
92 inline void SetSourceField(const char* value) { m_sourceFieldHasBeenSet = true; m_sourceField.assign(value); }
94 inline DestinationParameterValueConfiguration& WithSourceField(Aws::String&& value) { SetSourceField(std::move(value)); return *this;}
95 inline DestinationParameterValueConfiguration& WithSourceField(const char* value) { SetSourceField(value); return *this;}
97
99
100 inline const ColumnIdentifier& GetSourceColumn() const{ return m_sourceColumn; }
101 inline bool SourceColumnHasBeenSet() const { return m_sourceColumnHasBeenSet; }
102 inline void SetSourceColumn(const ColumnIdentifier& value) { m_sourceColumnHasBeenSet = true; m_sourceColumn = value; }
103 inline void SetSourceColumn(ColumnIdentifier&& value) { m_sourceColumnHasBeenSet = true; m_sourceColumn = std::move(value); }
107 private:
108
109 CustomValuesConfiguration m_customValuesConfiguration;
110 bool m_customValuesConfigurationHasBeenSet = false;
111
112 SelectAllValueOptions m_selectAllValueOptions;
113 bool m_selectAllValueOptionsHasBeenSet = false;
114
115 Aws::String m_sourceParameterName;
116 bool m_sourceParameterNameHasBeenSet = false;
117
118 Aws::String m_sourceField;
119 bool m_sourceFieldHasBeenSet = false;
120
121 ColumnIdentifier m_sourceColumn;
122 bool m_sourceColumnHasBeenSet = false;
123 };
124
125} // namespace Model
126} // namespace QuickSight
127} // namespace Aws
AWS_QUICKSIGHT_API DestinationParameterValueConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
DestinationParameterValueConfiguration & WithSelectAllValueOptions(const SelectAllValueOptions &value)
DestinationParameterValueConfiguration & WithSourceField(const char *value)
DestinationParameterValueConfiguration & WithSourceField(Aws::String &&value)
AWS_QUICKSIGHT_API DestinationParameterValueConfiguration(Aws::Utils::Json::JsonView jsonValue)
DestinationParameterValueConfiguration & WithSelectAllValueOptions(SelectAllValueOptions &&value)
DestinationParameterValueConfiguration & WithCustomValuesConfiguration(const CustomValuesConfiguration &value)
DestinationParameterValueConfiguration & WithCustomValuesConfiguration(CustomValuesConfiguration &&value)
DestinationParameterValueConfiguration & WithSourceField(const Aws::String &value)
DestinationParameterValueConfiguration & WithSourceColumn(ColumnIdentifier &&value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
DestinationParameterValueConfiguration & WithSourceParameterName(const char *value)
DestinationParameterValueConfiguration & WithSourceParameterName(Aws::String &&value)
DestinationParameterValueConfiguration & WithSourceColumn(const ColumnIdentifier &value)
DestinationParameterValueConfiguration & WithSourceParameterName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue