@aws-sdk/client-appsync 3.476.0 → 3.477.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist-cjs/models/models_0.js +5 -1
- package/dist-cjs/protocols/Aws_restJson1.js +376 -828
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +377 -829
- package/dist-types/AppSync.d.ts +2 -2
- package/dist-types/AppSyncClient.d.ts +2 -2
- package/dist-types/commands/AssociateApiCommand.d.ts +3 -4
- package/dist-types/commands/AssociateMergedGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/AssociateSourceGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/CreateApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/CreateApiKeyCommand.d.ts +3 -4
- package/dist-types/commands/CreateDataSourceCommand.d.ts +5 -6
- package/dist-types/commands/CreateDomainNameCommand.d.ts +2 -2
- package/dist-types/commands/CreateFunctionCommand.d.ts +4 -6
- package/dist-types/commands/CreateGraphqlApiCommand.d.ts +10 -4
- package/dist-types/commands/CreateResolverCommand.d.ts +7 -8
- package/dist-types/commands/CreateTypeCommand.d.ts +5 -6
- package/dist-types/commands/DeleteApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/DeleteApiKeyCommand.d.ts +3 -4
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +5 -6
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +5 -6
- package/dist-types/commands/DeleteFunctionCommand.d.ts +3 -4
- package/dist-types/commands/DeleteGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/DeleteResolverCommand.d.ts +5 -6
- package/dist-types/commands/DeleteTypeCommand.d.ts +5 -6
- package/dist-types/commands/DisassociateApiCommand.d.ts +5 -6
- package/dist-types/commands/DisassociateMergedGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/DisassociateSourceGraphqlApiCommand.d.ts +5 -6
- package/dist-types/commands/EvaluateCodeCommand.d.ts +7 -8
- package/dist-types/commands/EvaluateMappingTemplateCommand.d.ts +7 -8
- package/dist-types/commands/FlushApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/GetApiAssociationCommand.d.ts +3 -4
- package/dist-types/commands/GetApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/GetDataSourceCommand.d.ts +5 -6
- package/dist-types/commands/GetDataSourceIntrospectionCommand.d.ts +3 -4
- package/dist-types/commands/GetDomainNameCommand.d.ts +3 -4
- package/dist-types/commands/GetFunctionCommand.d.ts +3 -4
- package/dist-types/commands/GetGraphqlApiCommand.d.ts +6 -4
- package/dist-types/commands/GetIntrospectionSchemaCommand.d.ts +1 -2
- package/dist-types/commands/GetResolverCommand.d.ts +3 -4
- package/dist-types/commands/GetSchemaCreationStatusCommand.d.ts +3 -4
- package/dist-types/commands/GetSourceApiAssociationCommand.d.ts +3 -4
- package/dist-types/commands/GetTypeCommand.d.ts +5 -6
- package/dist-types/commands/ListApiKeysCommand.d.ts +6 -8
- package/dist-types/commands/ListDataSourcesCommand.d.ts +3 -4
- package/dist-types/commands/ListDomainNamesCommand.d.ts +2 -2
- package/dist-types/commands/ListFunctionsCommand.d.ts +3 -4
- package/dist-types/commands/ListGraphqlApisCommand.d.ts +5 -2
- package/dist-types/commands/ListResolversByFunctionCommand.d.ts +3 -4
- package/dist-types/commands/ListResolversCommand.d.ts +3 -4
- package/dist-types/commands/ListSourceApiAssociationsCommand.d.ts +3 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -4
- package/dist-types/commands/ListTypesByAssociationCommand.d.ts +5 -6
- package/dist-types/commands/ListTypesCommand.d.ts +5 -6
- package/dist-types/commands/StartDataSourceIntrospectionCommand.d.ts +3 -4
- package/dist-types/commands/StartSchemaCreationCommand.d.ts +7 -8
- package/dist-types/commands/StartSchemaMergeCommand.d.ts +5 -6
- package/dist-types/commands/TagResourceCommand.d.ts +3 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -4
- package/dist-types/commands/UpdateApiCacheCommand.d.ts +5 -6
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +3 -4
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +5 -6
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +5 -6
- package/dist-types/commands/UpdateFunctionCommand.d.ts +3 -4
- package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +11 -6
- package/dist-types/commands/UpdateResolverCommand.d.ts +5 -6
- package/dist-types/commands/UpdateSourceApiAssociationCommand.d.ts +5 -6
- package/dist-types/commands/UpdateTypeCommand.d.ts +5 -6
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +431 -383
- package/dist-types/ts3.4/models/models_0.d.ts +15 -0
- package/package.json +5 -4
package/dist-types/AppSync.d.ts
CHANGED
|
@@ -438,8 +438,8 @@ export interface AppSync {
|
|
|
438
438
|
}
|
|
439
439
|
/**
|
|
440
440
|
* @public
|
|
441
|
-
* <p>AppSync provides API actions for creating and interacting with data
|
|
442
|
-
*
|
|
441
|
+
* <p>AppSync provides API actions for creating and interacting with data sources using GraphQL
|
|
442
|
+
* from your application.</p>
|
|
443
443
|
*/
|
|
444
444
|
export declare class AppSync extends AppSyncClient implements AppSync {
|
|
445
445
|
}
|
|
@@ -214,8 +214,8 @@ export interface AppSyncClientResolvedConfig extends AppSyncClientResolvedConfig
|
|
|
214
214
|
}
|
|
215
215
|
/**
|
|
216
216
|
* @public
|
|
217
|
-
* <p>AppSync provides API actions for creating and interacting with data
|
|
218
|
-
*
|
|
217
|
+
* <p>AppSync provides API actions for creating and interacting with data sources using GraphQL
|
|
218
|
+
* from your application.</p>
|
|
219
219
|
*/
|
|
220
220
|
export declare class AppSyncClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AppSyncClientResolvedConfig> {
|
|
221
221
|
/**
|
|
@@ -57,15 +57,14 @@ export interface AssociateApiCommandOutput extends AssociateApiResponse, __Metad
|
|
|
57
57
|
* <p>You don't have access to perform this operation on this resource.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link BadRequestException} (client fault)
|
|
60
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
61
|
-
*
|
|
60
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
61
|
+
* field values, and then try again.</p>
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link InternalFailureException} (server fault)
|
|
64
64
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link NotFoundException} (client fault)
|
|
67
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
68
|
-
* again.</p>
|
|
67
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
69
68
|
*
|
|
70
69
|
* @throws {@link AppSyncServiceException}
|
|
71
70
|
* <p>Base exception class for all service exceptions from AppSync service.</p>
|
|
@@ -67,12 +67,12 @@ export interface AssociateMergedGraphqlApiCommandOutput extends AssociateMergedG
|
|
|
67
67
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link BadRequestException} (client fault)
|
|
70
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
71
|
-
*
|
|
70
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
71
|
+
* field values, and then try again.</p>
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
74
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
75
|
-
*
|
|
74
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
75
|
+
* change.</p>
|
|
76
76
|
*
|
|
77
77
|
* @throws {@link InternalFailureException} (server fault)
|
|
78
78
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
@@ -81,8 +81,7 @@ export interface AssociateMergedGraphqlApiCommandOutput extends AssociateMergedG
|
|
|
81
81
|
* <p>The request exceeded a limit. Try your request again.</p>
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link NotFoundException} (client fault)
|
|
84
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
85
|
-
* again.</p>
|
|
84
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
86
85
|
*
|
|
87
86
|
* @throws {@link UnauthorizedException} (client fault)
|
|
88
87
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -67,12 +67,12 @@ export interface AssociateSourceGraphqlApiCommandOutput extends AssociateSourceG
|
|
|
67
67
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link BadRequestException} (client fault)
|
|
70
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
71
|
-
*
|
|
70
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
71
|
+
* field values, and then try again.</p>
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
74
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
75
|
-
*
|
|
74
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
75
|
+
* change.</p>
|
|
76
76
|
*
|
|
77
77
|
* @throws {@link InternalFailureException} (server fault)
|
|
78
78
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
@@ -81,8 +81,7 @@ export interface AssociateSourceGraphqlApiCommandOutput extends AssociateSourceG
|
|
|
81
81
|
* <p>The request exceeded a limit. Try your request again.</p>
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link NotFoundException} (client fault)
|
|
84
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
85
|
-
* again.</p>
|
|
84
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
86
85
|
*
|
|
87
86
|
* @throws {@link UnauthorizedException} (client fault)
|
|
88
87
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -60,19 +60,18 @@ export interface CreateApiCacheCommandOutput extends CreateApiCacheResponse, __M
|
|
|
60
60
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link BadRequestException} (client fault)
|
|
63
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
64
|
-
*
|
|
63
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
64
|
+
* field values, and then try again.</p>
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
67
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
68
|
-
*
|
|
67
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
68
|
+
* change.</p>
|
|
69
69
|
*
|
|
70
70
|
* @throws {@link InternalFailureException} (server fault)
|
|
71
71
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link NotFoundException} (client fault)
|
|
74
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
75
|
-
* again.</p>
|
|
74
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
76
75
|
*
|
|
77
76
|
* @throws {@link UnauthorizedException} (client fault)
|
|
78
77
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -62,8 +62,8 @@ export interface CreateApiKeyCommandOutput extends CreateApiKeyResponse, __Metad
|
|
|
62
62
|
* <code>CreateApiKey</code>) or from update (for <code>UpdateApiKey</code>).</p>
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link BadRequestException} (client fault)
|
|
65
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
66
|
-
*
|
|
65
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
66
|
+
* field values, and then try again.</p>
|
|
67
67
|
*
|
|
68
68
|
* @throws {@link InternalFailureException} (server fault)
|
|
69
69
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
@@ -72,8 +72,7 @@ export interface CreateApiKeyCommandOutput extends CreateApiKeyResponse, __Metad
|
|
|
72
72
|
* <p>The request exceeded a limit. Try your request again.</p>
|
|
73
73
|
*
|
|
74
74
|
* @throws {@link NotFoundException} (client fault)
|
|
75
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
76
|
-
* again.</p>
|
|
75
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
77
76
|
*
|
|
78
77
|
* @throws {@link UnauthorizedException} (client fault)
|
|
79
78
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -148,19 +148,18 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
148
148
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
149
149
|
*
|
|
150
150
|
* @throws {@link BadRequestException} (client fault)
|
|
151
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
152
|
-
*
|
|
151
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
152
|
+
* field values, and then try again.</p>
|
|
153
153
|
*
|
|
154
154
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
155
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
156
|
-
*
|
|
155
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
156
|
+
* change.</p>
|
|
157
157
|
*
|
|
158
158
|
* @throws {@link InternalFailureException} (server fault)
|
|
159
159
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
160
160
|
*
|
|
161
161
|
* @throws {@link NotFoundException} (client fault)
|
|
162
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
163
|
-
* again.</p>
|
|
162
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
164
163
|
*
|
|
165
164
|
* @throws {@link UnauthorizedException} (client fault)
|
|
166
165
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -59,8 +59,8 @@ export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse,
|
|
|
59
59
|
* <p>You don't have access to perform this operation on this resource.</p>
|
|
60
60
|
*
|
|
61
61
|
* @throws {@link BadRequestException} (client fault)
|
|
62
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
63
|
-
*
|
|
62
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
63
|
+
* field values, and then try again.</p>
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link InternalFailureException} (server fault)
|
|
66
66
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
@@ -24,8 +24,7 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResponse, __M
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Creates a <code>Function</code> object.</p>
|
|
27
|
-
* <p>A function is a reusable entity. You can use multiple functions to compose the resolver
|
|
28
|
-
* logic.</p>
|
|
27
|
+
* <p>A function is a reusable entity. You can use multiple functions to compose the resolver logic.</p>
|
|
29
28
|
* @example
|
|
30
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
31
30
|
* ```javascript
|
|
@@ -91,15 +90,14 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResponse, __M
|
|
|
91
90
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
92
91
|
*
|
|
93
92
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
94
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
95
|
-
*
|
|
93
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
94
|
+
* change.</p>
|
|
96
95
|
*
|
|
97
96
|
* @throws {@link InternalFailureException} (server fault)
|
|
98
97
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
99
98
|
*
|
|
100
99
|
* @throws {@link NotFoundException} (client fault)
|
|
101
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
102
|
-
* again.</p>
|
|
100
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
103
101
|
*
|
|
104
102
|
* @throws {@link UnauthorizedException} (client fault)
|
|
105
103
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -84,6 +84,9 @@ export interface CreateGraphqlApiCommandOutput extends CreateGraphqlApiResponse,
|
|
|
84
84
|
* apiType: "GRAPHQL" || "MERGED",
|
|
85
85
|
* mergedApiExecutionRoleArn: "STRING_VALUE",
|
|
86
86
|
* ownerContact: "STRING_VALUE",
|
|
87
|
+
* introspectionConfig: "ENABLED" || "DISABLED",
|
|
88
|
+
* queryDepthLimit: Number("int"),
|
|
89
|
+
* resolverCountLimit: Number("int"),
|
|
87
90
|
* };
|
|
88
91
|
* const command = new CreateGraphqlApiCommand(input);
|
|
89
92
|
* const response = await client.send(command);
|
|
@@ -152,6 +155,9 @@ export interface CreateGraphqlApiCommandOutput extends CreateGraphqlApiResponse,
|
|
|
152
155
|
* // mergedApiExecutionRoleArn: "STRING_VALUE",
|
|
153
156
|
* // owner: "STRING_VALUE",
|
|
154
157
|
* // ownerContact: "STRING_VALUE",
|
|
158
|
+
* // introspectionConfig: "ENABLED" || "DISABLED",
|
|
159
|
+
* // queryDepthLimit: Number("int"),
|
|
160
|
+
* // resolverCountLimit: Number("int"),
|
|
155
161
|
* // },
|
|
156
162
|
* // };
|
|
157
163
|
*
|
|
@@ -167,12 +173,12 @@ export interface CreateGraphqlApiCommandOutput extends CreateGraphqlApiResponse,
|
|
|
167
173
|
* <p>The GraphQL API exceeded a limit. Try your request again.</p>
|
|
168
174
|
*
|
|
169
175
|
* @throws {@link BadRequestException} (client fault)
|
|
170
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
171
|
-
*
|
|
176
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
177
|
+
* field values, and then try again.</p>
|
|
172
178
|
*
|
|
173
179
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
174
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
175
|
-
*
|
|
180
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
181
|
+
* change.</p>
|
|
176
182
|
*
|
|
177
183
|
* @throws {@link InternalFailureException} (server fault)
|
|
178
184
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
@@ -24,8 +24,8 @@ export interface CreateResolverCommandOutput extends CreateResolverResponse, __M
|
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Creates a <code>Resolver</code> object.</p>
|
|
27
|
-
* <p>A resolver converts incoming requests into a format that a data source can understand,
|
|
28
|
-
*
|
|
27
|
+
* <p>A resolver converts incoming requests into a format that a data source can understand, and converts the data
|
|
28
|
+
* source's responses into GraphQL.</p>
|
|
29
29
|
* @example
|
|
30
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
31
31
|
* ```javascript
|
|
@@ -112,19 +112,18 @@ export interface CreateResolverCommandOutput extends CreateResolverResponse, __M
|
|
|
112
112
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
113
113
|
*
|
|
114
114
|
* @throws {@link BadRequestException} (client fault)
|
|
115
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
116
|
-
*
|
|
115
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
116
|
+
* field values, and then try again.</p>
|
|
117
117
|
*
|
|
118
118
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
119
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
120
|
-
*
|
|
119
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
120
|
+
* change.</p>
|
|
121
121
|
*
|
|
122
122
|
* @throws {@link InternalFailureException} (server fault)
|
|
123
123
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
124
124
|
*
|
|
125
125
|
* @throws {@link NotFoundException} (client fault)
|
|
126
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
127
|
-
* again.</p>
|
|
126
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
128
127
|
*
|
|
129
128
|
* @throws {@link UnauthorizedException} (client fault)
|
|
130
129
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -56,19 +56,18 @@ export interface CreateTypeCommandOutput extends CreateTypeResponse, __MetadataB
|
|
|
56
56
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
57
57
|
*
|
|
58
58
|
* @throws {@link BadRequestException} (client fault)
|
|
59
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
60
|
-
*
|
|
59
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
60
|
+
* field values, and then try again.</p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
63
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
64
|
-
*
|
|
63
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
64
|
+
* change.</p>
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link InternalFailureException} (server fault)
|
|
67
67
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link NotFoundException} (client fault)
|
|
70
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
71
|
-
* again.</p>
|
|
70
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
72
71
|
*
|
|
73
72
|
* @throws {@link UnauthorizedException} (client fault)
|
|
74
73
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -46,19 +46,18 @@ export interface DeleteApiCacheCommandOutput extends DeleteApiCacheResponse, __M
|
|
|
46
46
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
47
47
|
*
|
|
48
48
|
* @throws {@link BadRequestException} (client fault)
|
|
49
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
50
|
-
*
|
|
49
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
50
|
+
* field values, and then try again.</p>
|
|
51
51
|
*
|
|
52
52
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
53
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
54
|
-
*
|
|
53
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
54
|
+
* change.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link InternalFailureException} (server fault)
|
|
57
57
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link NotFoundException} (client fault)
|
|
60
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
61
|
-
* again.</p>
|
|
60
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
62
61
|
*
|
|
63
62
|
* @throws {@link UnauthorizedException} (client fault)
|
|
64
63
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -47,15 +47,14 @@ export interface DeleteApiKeyCommandOutput extends DeleteApiKeyResponse, __Metad
|
|
|
47
47
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
48
48
|
*
|
|
49
49
|
* @throws {@link BadRequestException} (client fault)
|
|
50
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
51
|
-
*
|
|
50
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
51
|
+
* field values, and then try again.</p>
|
|
52
52
|
*
|
|
53
53
|
* @throws {@link InternalFailureException} (server fault)
|
|
54
54
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link NotFoundException} (client fault)
|
|
57
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
58
|
-
* again.</p>
|
|
57
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
59
58
|
*
|
|
60
59
|
* @throws {@link UnauthorizedException} (client fault)
|
|
61
60
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -47,19 +47,18 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse,
|
|
|
47
47
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
48
48
|
*
|
|
49
49
|
* @throws {@link BadRequestException} (client fault)
|
|
50
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
51
|
-
*
|
|
50
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
51
|
+
* field values, and then try again.</p>
|
|
52
52
|
*
|
|
53
53
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
54
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
55
|
-
*
|
|
54
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
55
|
+
* change.</p>
|
|
56
56
|
*
|
|
57
57
|
* @throws {@link InternalFailureException} (server fault)
|
|
58
58
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link NotFoundException} (client fault)
|
|
61
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
62
|
-
* again.</p>
|
|
61
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
63
62
|
*
|
|
64
63
|
* @throws {@link UnauthorizedException} (client fault)
|
|
65
64
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -49,19 +49,18 @@ export interface DeleteDomainNameCommandOutput extends DeleteDomainNameResponse,
|
|
|
49
49
|
* <p>You don't have access to perform this operation on this resource.</p>
|
|
50
50
|
*
|
|
51
51
|
* @throws {@link BadRequestException} (client fault)
|
|
52
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
53
|
-
*
|
|
52
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
53
|
+
* field values, and then try again.</p>
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
56
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
57
|
-
*
|
|
56
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
57
|
+
* change.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link InternalFailureException} (server fault)
|
|
60
60
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link NotFoundException} (client fault)
|
|
63
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
64
|
-
* again.</p>
|
|
63
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
65
64
|
*
|
|
66
65
|
* @throws {@link AppSyncServiceException}
|
|
67
66
|
* <p>Base exception class for all service exceptions from AppSync service.</p>
|
|
@@ -47,15 +47,14 @@ export interface DeleteFunctionCommandOutput extends DeleteFunctionResponse, __M
|
|
|
47
47
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
48
48
|
*
|
|
49
49
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
50
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
51
|
-
*
|
|
50
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
51
|
+
* change.</p>
|
|
52
52
|
*
|
|
53
53
|
* @throws {@link InternalFailureException} (server fault)
|
|
54
54
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link NotFoundException} (client fault)
|
|
57
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
58
|
-
* again.</p>
|
|
57
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
59
58
|
*
|
|
60
59
|
* @throws {@link UnauthorizedException} (client fault)
|
|
61
60
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -49,19 +49,18 @@ export interface DeleteGraphqlApiCommandOutput extends DeleteGraphqlApiResponse,
|
|
|
49
49
|
* <p>You don't have access to perform this operation on this resource.</p>
|
|
50
50
|
*
|
|
51
51
|
* @throws {@link BadRequestException} (client fault)
|
|
52
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
53
|
-
*
|
|
52
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
53
|
+
* field values, and then try again.</p>
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
56
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
57
|
-
*
|
|
56
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
57
|
+
* change.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link InternalFailureException} (server fault)
|
|
60
60
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link NotFoundException} (client fault)
|
|
63
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
64
|
-
* again.</p>
|
|
63
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
65
64
|
*
|
|
66
65
|
* @throws {@link UnauthorizedException} (client fault)
|
|
67
66
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -48,19 +48,18 @@ export interface DeleteResolverCommandOutput extends DeleteResolverResponse, __M
|
|
|
48
48
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
49
49
|
*
|
|
50
50
|
* @throws {@link BadRequestException} (client fault)
|
|
51
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
52
|
-
*
|
|
51
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
52
|
+
* field values, and then try again.</p>
|
|
53
53
|
*
|
|
54
54
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
55
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
56
|
-
*
|
|
55
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
56
|
+
* change.</p>
|
|
57
57
|
*
|
|
58
58
|
* @throws {@link InternalFailureException} (server fault)
|
|
59
59
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
60
60
|
*
|
|
61
61
|
* @throws {@link NotFoundException} (client fault)
|
|
62
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
63
|
-
* again.</p>
|
|
62
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
64
63
|
*
|
|
65
64
|
* @throws {@link UnauthorizedException} (client fault)
|
|
66
65
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -47,19 +47,18 @@ export interface DeleteTypeCommandOutput extends DeleteTypeResponse, __MetadataB
|
|
|
47
47
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
48
48
|
*
|
|
49
49
|
* @throws {@link BadRequestException} (client fault)
|
|
50
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
51
|
-
*
|
|
50
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
51
|
+
* field values, and then try again.</p>
|
|
52
52
|
*
|
|
53
53
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
54
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
55
|
-
*
|
|
54
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
55
|
+
* change.</p>
|
|
56
56
|
*
|
|
57
57
|
* @throws {@link InternalFailureException} (server fault)
|
|
58
58
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link NotFoundException} (client fault)
|
|
61
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
62
|
-
* again.</p>
|
|
61
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
63
62
|
*
|
|
64
63
|
* @throws {@link UnauthorizedException} (client fault)
|
|
65
64
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -49,19 +49,18 @@ export interface DisassociateApiCommandOutput extends DisassociateApiResponse, _
|
|
|
49
49
|
* <p>You don't have access to perform this operation on this resource.</p>
|
|
50
50
|
*
|
|
51
51
|
* @throws {@link BadRequestException} (client fault)
|
|
52
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
53
|
-
*
|
|
52
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
53
|
+
* field values, and then try again.</p>
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
56
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
57
|
-
*
|
|
56
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
57
|
+
* change.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link InternalFailureException} (server fault)
|
|
60
60
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link NotFoundException} (client fault)
|
|
63
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
64
|
-
* again.</p>
|
|
63
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
65
64
|
*
|
|
66
65
|
* @throws {@link AppSyncServiceException}
|
|
67
66
|
* <p>Base exception class for all service exceptions from AppSync service.</p>
|
|
@@ -50,19 +50,18 @@ export interface DisassociateMergedGraphqlApiCommandOutput extends DisassociateM
|
|
|
50
50
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
51
51
|
*
|
|
52
52
|
* @throws {@link BadRequestException} (client fault)
|
|
53
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
54
|
-
*
|
|
53
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
54
|
+
* field values, and then try again.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
57
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
58
|
-
*
|
|
57
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
58
|
+
* change.</p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link InternalFailureException} (server fault)
|
|
61
61
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link NotFoundException} (client fault)
|
|
64
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
65
|
-
* again.</p>
|
|
64
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
66
65
|
*
|
|
67
66
|
* @throws {@link UnauthorizedException} (client fault)
|
|
68
67
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -50,19 +50,18 @@ export interface DisassociateSourceGraphqlApiCommandOutput extends DisassociateS
|
|
|
50
50
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
51
51
|
*
|
|
52
52
|
* @throws {@link BadRequestException} (client fault)
|
|
53
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
54
|
-
*
|
|
53
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
54
|
+
* field values, and then try again.</p>
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
57
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
58
|
-
*
|
|
57
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
58
|
+
* change.</p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link InternalFailureException} (server fault)
|
|
61
61
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link NotFoundException} (client fault)
|
|
64
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
65
|
-
* again.</p>
|
|
64
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
66
65
|
*
|
|
67
66
|
* @throws {@link UnauthorizedException} (client fault)
|
|
68
67
|
* <p>You aren't authorized to perform this operation.</p>
|
|
@@ -23,12 +23,11 @@ export interface EvaluateCodeCommandOutput extends EvaluateCodeResponse, __Metad
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Evaluates the given code and returns the response. The code definition requirements
|
|
27
|
-
*
|
|
28
|
-
* request
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
* maps it to the shape of the GraphQL field output type. </p>
|
|
26
|
+
* <p>Evaluates the given code and returns the response. The code definition requirements depend on the specified
|
|
27
|
+
* runtime. For <code>APPSYNC_JS</code> runtimes, the code defines the request and response functions. The request
|
|
28
|
+
* function takes the incoming request after a GraphQL operation is parsed and converts it into a request
|
|
29
|
+
* configuration for the selected data source operation. The response function interprets responses from the data
|
|
30
|
+
* source and maps it to the shape of the GraphQL field output type. </p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -79,8 +78,8 @@ export interface EvaluateCodeCommandOutput extends EvaluateCodeResponse, __Metad
|
|
|
79
78
|
* <p>You don't have access to perform this operation on this resource.</p>
|
|
80
79
|
*
|
|
81
80
|
* @throws {@link BadRequestException} (client fault)
|
|
82
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
83
|
-
*
|
|
81
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
82
|
+
* field values, and then try again.</p>
|
|
84
83
|
*
|
|
85
84
|
* @throws {@link InternalFailureException} (server fault)
|
|
86
85
|
* <p>An internal AppSync error occurred. Try your request again.</p>
|