AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GraphQLRenderConfig.h
1
6#pragma once
7#include <aws/amplifyuibuilder/AmplifyUIBuilder_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace AmplifyUIBuilder
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_AMPLIFYUIBUILDER_API GraphQLRenderConfig();
36 AWS_AMPLIFYUIBUILDER_API GraphQLRenderConfig(Aws::Utils::Json::JsonView jsonValue);
37 AWS_AMPLIFYUIBUILDER_API GraphQLRenderConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_AMPLIFYUIBUILDER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetTypesFilePath() const{ return m_typesFilePath; }
47 inline bool TypesFilePathHasBeenSet() const { return m_typesFilePathHasBeenSet; }
48 inline void SetTypesFilePath(const Aws::String& value) { m_typesFilePathHasBeenSet = true; m_typesFilePath = value; }
49 inline void SetTypesFilePath(Aws::String&& value) { m_typesFilePathHasBeenSet = true; m_typesFilePath = std::move(value); }
50 inline void SetTypesFilePath(const char* value) { m_typesFilePathHasBeenSet = true; m_typesFilePath.assign(value); }
51 inline GraphQLRenderConfig& WithTypesFilePath(const Aws::String& value) { SetTypesFilePath(value); return *this;}
52 inline GraphQLRenderConfig& WithTypesFilePath(Aws::String&& value) { SetTypesFilePath(std::move(value)); return *this;}
53 inline GraphQLRenderConfig& WithTypesFilePath(const char* value) { SetTypesFilePath(value); return *this;}
55
57
61 inline const Aws::String& GetQueriesFilePath() const{ return m_queriesFilePath; }
62 inline bool QueriesFilePathHasBeenSet() const { return m_queriesFilePathHasBeenSet; }
63 inline void SetQueriesFilePath(const Aws::String& value) { m_queriesFilePathHasBeenSet = true; m_queriesFilePath = value; }
64 inline void SetQueriesFilePath(Aws::String&& value) { m_queriesFilePathHasBeenSet = true; m_queriesFilePath = std::move(value); }
65 inline void SetQueriesFilePath(const char* value) { m_queriesFilePathHasBeenSet = true; m_queriesFilePath.assign(value); }
66 inline GraphQLRenderConfig& WithQueriesFilePath(const Aws::String& value) { SetQueriesFilePath(value); return *this;}
67 inline GraphQLRenderConfig& WithQueriesFilePath(Aws::String&& value) { SetQueriesFilePath(std::move(value)); return *this;}
68 inline GraphQLRenderConfig& WithQueriesFilePath(const char* value) { SetQueriesFilePath(value); return *this;}
70
72
76 inline const Aws::String& GetMutationsFilePath() const{ return m_mutationsFilePath; }
77 inline bool MutationsFilePathHasBeenSet() const { return m_mutationsFilePathHasBeenSet; }
78 inline void SetMutationsFilePath(const Aws::String& value) { m_mutationsFilePathHasBeenSet = true; m_mutationsFilePath = value; }
79 inline void SetMutationsFilePath(Aws::String&& value) { m_mutationsFilePathHasBeenSet = true; m_mutationsFilePath = std::move(value); }
80 inline void SetMutationsFilePath(const char* value) { m_mutationsFilePathHasBeenSet = true; m_mutationsFilePath.assign(value); }
81 inline GraphQLRenderConfig& WithMutationsFilePath(const Aws::String& value) { SetMutationsFilePath(value); return *this;}
82 inline GraphQLRenderConfig& WithMutationsFilePath(Aws::String&& value) { SetMutationsFilePath(std::move(value)); return *this;}
83 inline GraphQLRenderConfig& WithMutationsFilePath(const char* value) { SetMutationsFilePath(value); return *this;}
85
87
91 inline const Aws::String& GetSubscriptionsFilePath() const{ return m_subscriptionsFilePath; }
92 inline bool SubscriptionsFilePathHasBeenSet() const { return m_subscriptionsFilePathHasBeenSet; }
93 inline void SetSubscriptionsFilePath(const Aws::String& value) { m_subscriptionsFilePathHasBeenSet = true; m_subscriptionsFilePath = value; }
94 inline void SetSubscriptionsFilePath(Aws::String&& value) { m_subscriptionsFilePathHasBeenSet = true; m_subscriptionsFilePath = std::move(value); }
95 inline void SetSubscriptionsFilePath(const char* value) { m_subscriptionsFilePathHasBeenSet = true; m_subscriptionsFilePath.assign(value); }
97 inline GraphQLRenderConfig& WithSubscriptionsFilePath(Aws::String&& value) { SetSubscriptionsFilePath(std::move(value)); return *this;}
98 inline GraphQLRenderConfig& WithSubscriptionsFilePath(const char* value) { SetSubscriptionsFilePath(value); return *this;}
100
102
106 inline const Aws::String& GetFragmentsFilePath() const{ return m_fragmentsFilePath; }
107 inline bool FragmentsFilePathHasBeenSet() const { return m_fragmentsFilePathHasBeenSet; }
108 inline void SetFragmentsFilePath(const Aws::String& value) { m_fragmentsFilePathHasBeenSet = true; m_fragmentsFilePath = value; }
109 inline void SetFragmentsFilePath(Aws::String&& value) { m_fragmentsFilePathHasBeenSet = true; m_fragmentsFilePath = std::move(value); }
110 inline void SetFragmentsFilePath(const char* value) { m_fragmentsFilePathHasBeenSet = true; m_fragmentsFilePath.assign(value); }
111 inline GraphQLRenderConfig& WithFragmentsFilePath(const Aws::String& value) { SetFragmentsFilePath(value); return *this;}
112 inline GraphQLRenderConfig& WithFragmentsFilePath(Aws::String&& value) { SetFragmentsFilePath(std::move(value)); return *this;}
113 inline GraphQLRenderConfig& WithFragmentsFilePath(const char* value) { SetFragmentsFilePath(value); return *this;}
115 private:
116
117 Aws::String m_typesFilePath;
118 bool m_typesFilePathHasBeenSet = false;
119
120 Aws::String m_queriesFilePath;
121 bool m_queriesFilePathHasBeenSet = false;
122
123 Aws::String m_mutationsFilePath;
124 bool m_mutationsFilePathHasBeenSet = false;
125
126 Aws::String m_subscriptionsFilePath;
127 bool m_subscriptionsFilePathHasBeenSet = false;
128
129 Aws::String m_fragmentsFilePath;
130 bool m_fragmentsFilePathHasBeenSet = false;
131 };
132
133} // namespace Model
134} // namespace AmplifyUIBuilder
135} // namespace Aws
GraphQLRenderConfig & WithMutationsFilePath(const Aws::String &value)
GraphQLRenderConfig & WithFragmentsFilePath(Aws::String &&value)
GraphQLRenderConfig & WithTypesFilePath(Aws::String &&value)
GraphQLRenderConfig & WithFragmentsFilePath(const Aws::String &value)
GraphQLRenderConfig & WithSubscriptionsFilePath(Aws::String &&value)
AWS_AMPLIFYUIBUILDER_API GraphQLRenderConfig(Aws::Utils::Json::JsonView jsonValue)
GraphQLRenderConfig & WithMutationsFilePath(const char *value)
GraphQLRenderConfig & WithSubscriptionsFilePath(const Aws::String &value)
GraphQLRenderConfig & WithQueriesFilePath(const Aws::String &value)
AWS_AMPLIFYUIBUILDER_API Aws::Utils::Json::JsonValue Jsonize() const
GraphQLRenderConfig & WithTypesFilePath(const char *value)
GraphQLRenderConfig & WithFragmentsFilePath(const char *value)
GraphQLRenderConfig & WithSubscriptionsFilePath(const char *value)
AWS_AMPLIFYUIBUILDER_API GraphQLRenderConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
GraphQLRenderConfig & WithTypesFilePath(const Aws::String &value)
GraphQLRenderConfig & WithQueriesFilePath(Aws::String &&value)
GraphQLRenderConfig & WithMutationsFilePath(Aws::String &&value)
GraphQLRenderConfig & WithQueriesFilePath(const char *value)
void SetSubscriptionsFilePath(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue