@aws-sdk/client-appsync 3.288.0 → 3.290.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/dist-types/commands/AssociateApiCommand.d.ts +14 -0
- package/dist-types/commands/CreateApiCacheCommand.d.ts +18 -0
- package/dist-types/commands/CreateApiKeyCommand.d.ts +24 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +18 -0
- package/dist-types/commands/CreateDomainNameCommand.d.ts +11 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +14 -0
- package/dist-types/commands/CreateGraphqlApiCommand.d.ts +21 -0
- package/dist-types/commands/CreateResolverCommand.d.ts +18 -0
- package/dist-types/commands/CreateTypeCommand.d.ts +18 -0
- package/dist-types/commands/DeleteApiCacheCommand.d.ts +18 -0
- package/dist-types/commands/DeleteApiKeyCommand.d.ts +14 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +18 -0
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +18 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +14 -0
- package/dist-types/commands/DeleteGraphqlApiCommand.d.ts +21 -0
- package/dist-types/commands/DeleteResolverCommand.d.ts +18 -0
- package/dist-types/commands/DeleteTypeCommand.d.ts +18 -0
- package/dist-types/commands/DisassociateApiCommand.d.ts +18 -0
- package/dist-types/commands/EvaluateCodeCommand.d.ts +11 -0
- package/dist-types/commands/EvaluateMappingTemplateCommand.d.ts +11 -0
- package/dist-types/commands/FlushApiCacheCommand.d.ts +18 -0
- package/dist-types/commands/GetApiAssociationCommand.d.ts +14 -0
- package/dist-types/commands/GetApiCacheCommand.d.ts +18 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +18 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +14 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +11 -0
- package/dist-types/commands/GetGraphqlApiCommand.d.ts +17 -0
- package/dist-types/commands/GetIntrospectionSchemaCommand.d.ts +13 -0
- package/dist-types/commands/GetResolverCommand.d.ts +11 -0
- package/dist-types/commands/GetSchemaCreationStatusCommand.d.ts +14 -0
- package/dist-types/commands/GetTypeCommand.d.ts +18 -0
- package/dist-types/commands/ListApiKeysCommand.d.ts +14 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +14 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +11 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +14 -0
- package/dist-types/commands/ListGraphqlApisCommand.d.ts +11 -0
- package/dist-types/commands/ListResolversByFunctionCommand.d.ts +14 -0
- package/dist-types/commands/ListResolversCommand.d.ts +14 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +20 -0
- package/dist-types/commands/ListTypesCommand.d.ts +18 -0
- package/dist-types/commands/StartSchemaCreationCommand.d.ts +18 -0
- package/dist-types/commands/TagResourceCommand.d.ts +20 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +20 -0
- package/dist-types/commands/UpdateApiCacheCommand.d.ts +18 -0
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +21 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +18 -0
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +18 -0
- package/dist-types/commands/UpdateFunctionCommand.d.ts +14 -0
- package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +21 -0
- package/dist-types/commands/UpdateResolverCommand.d.ts +18 -0
- package/dist-types/commands/UpdateTypeCommand.d.ts +18 -0
- package/package.json +29 -29
|
@@ -29,6 +29,20 @@ export interface AssociateApiCommandOutput extends AssociateApiResponse, __Metad
|
|
|
29
29
|
* @see {@link AssociateApiCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
37
|
+
* field values, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
40
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link NotFoundException} (client fault)
|
|
43
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class AssociateApiCommand extends $Command<AssociateApiCommandInput, AssociateApiCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
48
|
readonly input: AssociateApiCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface CreateApiCacheCommandOutput extends CreateApiCacheResponse, __M
|
|
|
29
29
|
* @see {@link CreateApiCacheCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class CreateApiCacheCommand extends $Command<CreateApiCacheCommandInput, CreateApiCacheCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: CreateApiCacheCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface CreateApiKeyCommandOutput extends CreateApiKeyResponse, __Metad
|
|
|
29
29
|
* @see {@link CreateApiKeyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ApiKeyLimitExceededException} (client fault)
|
|
33
|
+
* <p>The API key exceeded a limit. Try your request again.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ApiKeyValidityOutOfBoundsException} (client fault)
|
|
36
|
+
* <p>The API key expiration must be set to a value between 1 and 365 days from creation (for
|
|
37
|
+
* <code>CreateApiKey</code>) or from update (for <code>UpdateApiKey</code>).</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link BadRequestException} (client fault)
|
|
40
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
41
|
+
* field values, and then try again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
44
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
47
|
+
* <p>The request exceeded a limit. Try your request again.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link NotFoundException} (client fault)
|
|
50
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
53
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class CreateApiKeyCommand extends $Command<CreateApiKeyCommandInput, CreateApiKeyCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
58
|
readonly input: CreateApiKeyCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
29
29
|
* @see {@link CreateDataSourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class CreateDataSourceCommand extends $Command<CreateDataSourceCommandInput, CreateDataSourceCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: CreateDataSourceCommandInput;
|
|
@@ -29,6 +29,17 @@ export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse,
|
|
|
29
29
|
* @see {@link CreateDomainNameCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
37
|
+
* field values, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
40
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
32
43
|
*/
|
|
33
44
|
export declare class CreateDomainNameCommand extends $Command<CreateDomainNameCommandInput, CreateDomainNameCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
45
|
readonly input: CreateDomainNameCommandInput;
|
|
@@ -30,6 +30,20 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResponse, __M
|
|
|
30
30
|
* @see {@link CreateFunctionCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
34
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
35
|
+
* change.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
38
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NotFoundException} (client fault)
|
|
41
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
44
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
33
47
|
*/
|
|
34
48
|
export declare class CreateFunctionCommand extends $Command<CreateFunctionCommandInput, CreateFunctionCommandOutput, AppSyncClientResolvedConfig> {
|
|
35
49
|
readonly input: CreateFunctionCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface CreateGraphqlApiCommandOutput extends CreateGraphqlApiResponse,
|
|
|
29
29
|
* @see {@link CreateGraphqlApiCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ApiLimitExceededException} (client fault)
|
|
33
|
+
* <p>The GraphQL API exceeded a limit. Try your request again.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
37
|
+
* field values, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
40
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
41
|
+
* change.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
44
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
47
|
+
* <p>The request exceeded a limit. Try your request again.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
50
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class CreateGraphqlApiCommand extends $Command<CreateGraphqlApiCommandInput, CreateGraphqlApiCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
55
|
readonly input: CreateGraphqlApiCommandInput;
|
|
@@ -31,6 +31,24 @@ export interface CreateResolverCommandOutput extends CreateResolverResponse, __M
|
|
|
31
31
|
* @see {@link CreateResolverCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
36
|
+
* field values, and then try again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
39
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
40
|
+
* change.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
43
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link NotFoundException} (client fault)
|
|
46
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
49
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
34
52
|
*/
|
|
35
53
|
export declare class CreateResolverCommand extends $Command<CreateResolverCommandInput, CreateResolverCommandOutput, AppSyncClientResolvedConfig> {
|
|
36
54
|
readonly input: CreateResolverCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface CreateTypeCommandOutput extends CreateTypeResponse, __MetadataB
|
|
|
29
29
|
* @see {@link CreateTypeCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class CreateTypeCommand extends $Command<CreateTypeCommandInput, CreateTypeCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: CreateTypeCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface DeleteApiCacheCommandOutput extends DeleteApiCacheResponse, __M
|
|
|
29
29
|
* @see {@link DeleteApiCacheCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class DeleteApiCacheCommand extends $Command<DeleteApiCacheCommandInput, DeleteApiCacheCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: DeleteApiCacheCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DeleteApiKeyCommandOutput extends DeleteApiKeyResponse, __Metad
|
|
|
29
29
|
* @see {@link DeleteApiKeyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
37
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link NotFoundException} (client fault)
|
|
40
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
43
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DeleteApiKeyCommand extends $Command<DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
48
|
readonly input: DeleteApiKeyCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse,
|
|
|
29
29
|
* @see {@link DeleteDataSourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class DeleteDataSourceCommand extends $Command<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: DeleteDataSourceCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface DeleteDomainNameCommandOutput extends DeleteDomainNameResponse,
|
|
|
29
29
|
* @see {@link DeleteDomainNameCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
37
|
+
* field values, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
40
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
41
|
+
* change.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
44
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotFoundException} (client fault)
|
|
47
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class DeleteDomainNameCommand extends $Command<DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: DeleteDomainNameCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DeleteFunctionCommandOutput extends DeleteFunctionResponse, __M
|
|
|
29
29
|
* @see {@link DeleteFunctionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
33
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
34
|
+
* change.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
37
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link NotFoundException} (client fault)
|
|
40
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
43
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DeleteFunctionCommand extends $Command<DeleteFunctionCommandInput, DeleteFunctionCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
48
|
readonly input: DeleteFunctionCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface DeleteGraphqlApiCommandOutput extends DeleteGraphqlApiResponse,
|
|
|
29
29
|
* @see {@link DeleteGraphqlApiCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
37
|
+
* field values, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
40
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
41
|
+
* change.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
44
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotFoundException} (client fault)
|
|
47
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
50
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class DeleteGraphqlApiCommand extends $Command<DeleteGraphqlApiCommandInput, DeleteGraphqlApiCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
55
|
readonly input: DeleteGraphqlApiCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface DeleteResolverCommandOutput extends DeleteResolverResponse, __M
|
|
|
29
29
|
* @see {@link DeleteResolverCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class DeleteResolverCommand extends $Command<DeleteResolverCommandInput, DeleteResolverCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: DeleteResolverCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface DeleteTypeCommandOutput extends DeleteTypeResponse, __MetadataB
|
|
|
29
29
|
* @see {@link DeleteTypeCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class DeleteTypeCommand extends $Command<DeleteTypeCommandInput, DeleteTypeCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: DeleteTypeCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface DisassociateApiCommandOutput extends DisassociateApiResponse, _
|
|
|
29
29
|
* @see {@link DisassociateApiCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
37
|
+
* field values, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
40
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
41
|
+
* change.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
44
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotFoundException} (client fault)
|
|
47
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class DisassociateApiCommand extends $Command<DisassociateApiCommandInput, DisassociateApiCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: DisassociateApiCommandInput;
|
|
@@ -33,6 +33,17 @@ export interface EvaluateCodeCommandOutput extends EvaluateCodeResponse, __Metad
|
|
|
33
33
|
* @see {@link EvaluateCodeCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link BadRequestException} (client fault)
|
|
40
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
41
|
+
* field values, and then try again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
44
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
36
47
|
*/
|
|
37
48
|
export declare class EvaluateCodeCommand extends $Command<EvaluateCodeCommandInput, EvaluateCodeCommandOutput, AppSyncClientResolvedConfig> {
|
|
38
49
|
readonly input: EvaluateCodeCommandInput;
|
|
@@ -34,6 +34,17 @@ export interface EvaluateMappingTemplateCommandOutput extends EvaluateMappingTem
|
|
|
34
34
|
* @see {@link EvaluateMappingTemplateCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
38
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link BadRequestException} (client fault)
|
|
41
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
42
|
+
* field values, and then try again.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
45
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
37
48
|
*/
|
|
38
49
|
export declare class EvaluateMappingTemplateCommand extends $Command<EvaluateMappingTemplateCommandInput, EvaluateMappingTemplateCommandOutput, AppSyncClientResolvedConfig> {
|
|
39
50
|
readonly input: EvaluateMappingTemplateCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface FlushApiCacheCommandOutput extends FlushApiCacheResponse, __Met
|
|
|
29
29
|
* @see {@link FlushApiCacheCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class FlushApiCacheCommand extends $Command<FlushApiCacheCommandInput, FlushApiCacheCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: FlushApiCacheCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface GetApiAssociationCommandOutput extends GetApiAssociationRespons
|
|
|
29
29
|
* @see {@link GetApiAssociationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
37
|
+
* field values, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
40
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link NotFoundException} (client fault)
|
|
43
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class GetApiAssociationCommand extends $Command<GetApiAssociationCommandInput, GetApiAssociationCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
48
|
readonly input: GetApiAssociationCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface GetApiCacheCommandOutput extends GetApiCacheResponse, __Metadat
|
|
|
29
29
|
* @see {@link GetApiCacheCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class GetApiCacheCommand extends $Command<GetApiCacheCommandInput, GetApiCacheCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: GetApiCacheCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface GetDataSourceCommandOutput extends GetDataSourceResponse, __Met
|
|
|
29
29
|
* @see {@link GetDataSourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
34
|
+
* field values, and then try again.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
37
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
38
|
+
* change.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
41
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
47
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class GetDataSourceCommand extends $Command<GetDataSourceCommandInput, GetDataSourceCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
52
|
readonly input: GetDataSourceCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface GetDomainNameCommandOutput extends GetDomainNameResponse, __Met
|
|
|
29
29
|
* @see {@link GetDomainNameCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You don't have access to perform this operation on this resource.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The request is not well formed. For example, a value is invalid or a required field is missing. Check the
|
|
37
|
+
* field values, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalFailureException} (server fault)
|
|
40
|
+
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link NotFoundException} (client fault)
|
|
43
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class GetDomainNameCommand extends $Command<GetDomainNameCommandInput, GetDomainNameCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
48
|
readonly input: GetDomainNameCommandInput;
|
|
@@ -29,6 +29,17 @@ export interface GetFunctionCommandOutput extends GetFunctionResponse, __Metadat
|
|
|
29
29
|
* @see {@link GetFunctionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
33
|
+
* <p>Another modification is in progress at this time and it must complete before you can make your
|
|
34
|
+
* change.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link NotFoundException} (client fault)
|
|
37
|
+
* <p>The resource specified in the request was not found. Check the resource, and then try again.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
40
|
+
* <p>You aren't authorized to perform this operation.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
32
43
|
*/
|
|
33
44
|
export declare class GetFunctionCommand extends $Command<GetFunctionCommandInput, GetFunctionCommandOutput, AppSyncClientResolvedConfig> {
|
|
34
45
|
readonly input: GetFunctionCommandInput;
|