AWS SDK for C++

AWS SDK for C++ Version 1.11.844

Loading...
Searching...
No Matches
FMKBParameters.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/quicksight/QuickSight_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace QuickSight {
21namespace Model {
22
32 public:
33 AWS_QUICKSIGHT_API FMKBParameters() = default;
34 AWS_QUICKSIGHT_API FMKBParameters(Aws::Utils::Json::JsonView jsonValue);
35 AWS_QUICKSIGHT_API FMKBParameters& operator=(Aws::Utils::Json::JsonView jsonValue);
36 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
37
39
42 inline const Aws::String& GetKnowledgeBaseArn() const { return m_knowledgeBaseArn; }
43 inline bool KnowledgeBaseArnHasBeenSet() const { return m_knowledgeBaseArnHasBeenSet; }
44 template <typename KnowledgeBaseArnT = Aws::String>
45 void SetKnowledgeBaseArn(KnowledgeBaseArnT&& value) {
46 m_knowledgeBaseArnHasBeenSet = true;
47 m_knowledgeBaseArn = std::forward<KnowledgeBaseArnT>(value);
48 }
49 template <typename KnowledgeBaseArnT = Aws::String>
50 FMKBParameters& WithKnowledgeBaseArn(KnowledgeBaseArnT&& value) {
51 SetKnowledgeBaseArn(std::forward<KnowledgeBaseArnT>(value));
52 return *this;
53 }
55
57
60 inline const Aws::Vector<Aws::String>& GetLinkedDataSourceIds() const { return m_linkedDataSourceIds; }
61 inline bool LinkedDataSourceIdsHasBeenSet() const { return m_linkedDataSourceIdsHasBeenSet; }
62 template <typename LinkedDataSourceIdsT = Aws::Vector<Aws::String>>
63 void SetLinkedDataSourceIds(LinkedDataSourceIdsT&& value) {
64 m_linkedDataSourceIdsHasBeenSet = true;
65 m_linkedDataSourceIds = std::forward<LinkedDataSourceIdsT>(value);
66 }
67 template <typename LinkedDataSourceIdsT = Aws::Vector<Aws::String>>
68 FMKBParameters& WithLinkedDataSourceIds(LinkedDataSourceIdsT&& value) {
69 SetLinkedDataSourceIds(std::forward<LinkedDataSourceIdsT>(value));
70 return *this;
71 }
72 template <typename LinkedDataSourceIdsT = Aws::String>
73 FMKBParameters& AddLinkedDataSourceIds(LinkedDataSourceIdsT&& value) {
74 m_linkedDataSourceIdsHasBeenSet = true;
75 m_linkedDataSourceIds.emplace_back(std::forward<LinkedDataSourceIdsT>(value));
76 return *this;
77 }
79 private:
80 Aws::String m_knowledgeBaseArn;
81
82 Aws::Vector<Aws::String> m_linkedDataSourceIds;
83 bool m_knowledgeBaseArnHasBeenSet = false;
84 bool m_linkedDataSourceIdsHasBeenSet = false;
85};
86
87} // namespace Model
88} // namespace QuickSight
89} // namespace Aws
AWS_QUICKSIGHT_API FMKBParameters(Aws::Utils::Json::JsonView jsonValue)
void SetLinkedDataSourceIds(LinkedDataSourceIdsT &&value)
void SetKnowledgeBaseArn(KnowledgeBaseArnT &&value)
FMKBParameters & AddLinkedDataSourceIds(LinkedDataSourceIdsT &&value)
const Aws::String & GetKnowledgeBaseArn() const
const Aws::Vector< Aws::String > & GetLinkedDataSourceIds() const
FMKBParameters & WithLinkedDataSourceIds(LinkedDataSourceIdsT &&value)
FMKBParameters & WithKnowledgeBaseArn(KnowledgeBaseArnT &&value)
AWS_QUICKSIGHT_API FMKBParameters & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API FMKBParameters()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue