@aws-sdk/client-appsync 3.278.0 → 3.281.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 +411 -0
- package/dist-types/commands/AssociateApiCommand.d.ts +6 -0
- package/dist-types/commands/CreateApiCacheCommand.d.ts +6 -0
- package/dist-types/commands/CreateApiKeyCommand.d.ts +6 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/CreateDomainNameCommand.d.ts +6 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +6 -0
- package/dist-types/commands/CreateGraphqlApiCommand.d.ts +6 -0
- package/dist-types/commands/CreateResolverCommand.d.ts +6 -0
- package/dist-types/commands/CreateTypeCommand.d.ts +6 -0
- package/dist-types/commands/DeleteApiCacheCommand.d.ts +6 -0
- package/dist-types/commands/DeleteApiKeyCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteGraphqlApiCommand.d.ts +6 -0
- package/dist-types/commands/DeleteResolverCommand.d.ts +6 -0
- package/dist-types/commands/DeleteTypeCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateApiCommand.d.ts +6 -0
- package/dist-types/commands/EvaluateCodeCommand.d.ts +6 -0
- package/dist-types/commands/EvaluateMappingTemplateCommand.d.ts +6 -0
- package/dist-types/commands/FlushApiCacheCommand.d.ts +6 -0
- package/dist-types/commands/GetApiAssociationCommand.d.ts +6 -0
- package/dist-types/commands/GetApiCacheCommand.d.ts +6 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +6 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +6 -0
- package/dist-types/commands/GetGraphqlApiCommand.d.ts +6 -0
- package/dist-types/commands/GetIntrospectionSchemaCommand.d.ts +6 -0
- package/dist-types/commands/GetResolverCommand.d.ts +6 -0
- package/dist-types/commands/GetSchemaCreationStatusCommand.d.ts +6 -0
- package/dist-types/commands/GetTypeCommand.d.ts +6 -0
- package/dist-types/commands/ListApiKeysCommand.d.ts +6 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +6 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +6 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +6 -0
- package/dist-types/commands/ListGraphqlApisCommand.d.ts +6 -0
- package/dist-types/commands/ListResolversByFunctionCommand.d.ts +6 -0
- package/dist-types/commands/ListResolversCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListTypesCommand.d.ts +6 -0
- package/dist-types/commands/StartSchemaCreationCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateApiCacheCommand.d.ts +6 -0
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFunctionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +6 -0
- package/dist-types/commands/UpdateResolverCommand.d.ts +6 -0
- package/dist-types/commands/UpdateTypeCommand.d.ts +6 -0
- package/package.json +6 -6
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteGraphqlApiRequest, DeleteGraphqlApiResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteGraphqlApiCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteGraphqlApiCommandInput extends DeleteGraphqlApiRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteGraphqlApiCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteGraphqlApiCommandOutput extends DeleteGraphqlApiResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteResolverRequest, DeleteResolverResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteResolverCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteResolverCommandInput extends DeleteResolverRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteResolverCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteResolverCommandOutput extends DeleteResolverResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteTypeRequest, DeleteTypeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteTypeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteTypeCommandInput extends DeleteTypeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteTypeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteTypeCommandOutput extends DeleteTypeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DisassociateApiRequest, DisassociateApiResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DisassociateApiCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DisassociateApiCommandInput extends DisassociateApiRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DisassociateApiCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DisassociateApiCommandOutput extends DisassociateApiResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { EvaluateCodeRequest, EvaluateCodeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link EvaluateCodeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface EvaluateCodeCommandInput extends EvaluateCodeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link EvaluateCodeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface EvaluateCodeCommandOutput extends EvaluateCodeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { EvaluateMappingTemplateRequest, EvaluateMappingTemplateResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link EvaluateMappingTemplateCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface EvaluateMappingTemplateCommandInput extends EvaluateMappingTemplateRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link EvaluateMappingTemplateCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface EvaluateMappingTemplateCommandOutput extends EvaluateMappingTemplateResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { FlushApiCacheRequest, FlushApiCacheResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link FlushApiCacheCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface FlushApiCacheCommandInput extends FlushApiCacheRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link FlushApiCacheCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface FlushApiCacheCommandOutput extends FlushApiCacheResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetApiAssociationRequest, GetApiAssociationResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetApiAssociationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetApiAssociationCommandInput extends GetApiAssociationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetApiAssociationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetApiAssociationCommandOutput extends GetApiAssociationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetApiCacheRequest, GetApiCacheResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetApiCacheCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetApiCacheCommandInput extends GetApiCacheRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetApiCacheCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetApiCacheCommandOutput extends GetApiCacheResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetDataSourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetDataSourceCommandInput extends GetDataSourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetDataSourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetDataSourceCommandOutput extends GetDataSourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetDomainNameRequest, GetDomainNameResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetDomainNameCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetDomainNameCommandInput extends GetDomainNameRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetDomainNameCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetDomainNameCommandOutput extends GetDomainNameResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetFunctionRequest, GetFunctionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetFunctionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetFunctionCommandInput extends GetFunctionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetFunctionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetFunctionCommandOutput extends GetFunctionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetGraphqlApiRequest, GetGraphqlApiResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetGraphqlApiCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetGraphqlApiCommandInput extends GetGraphqlApiRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetGraphqlApiCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetGraphqlApiCommandOutput extends GetGraphqlApiResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetIntrospectionSchemaRequest, GetIntrospectionSchemaResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetIntrospectionSchemaCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetIntrospectionSchemaCommandInput extends GetIntrospectionSchemaRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetIntrospectionSchemaCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetIntrospectionSchemaCommandOutput extends GetIntrospectionSchemaResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetResolverRequest, GetResolverResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetResolverCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetResolverCommandInput extends GetResolverRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetResolverCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetResolverCommandOutput extends GetResolverResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetSchemaCreationStatusRequest, GetSchemaCreationStatusResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetSchemaCreationStatusCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetSchemaCreationStatusCommandInput extends GetSchemaCreationStatusRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetSchemaCreationStatusCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetSchemaCreationStatusCommandOutput extends GetSchemaCreationStatusResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { GetTypeRequest, GetTypeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetTypeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetTypeCommandInput extends GetTypeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetTypeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetTypeCommandOutput extends GetTypeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListApiKeysRequest, ListApiKeysResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListApiKeysCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListApiKeysCommandInput extends ListApiKeysRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListApiKeysCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListApiKeysCommandOutput extends ListApiKeysResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDataSourcesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDataSourcesCommandInput extends ListDataSourcesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDataSourcesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListDomainNamesRequest, ListDomainNamesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDomainNamesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDomainNamesCommandInput extends ListDomainNamesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDomainNamesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListFunctionsRequest, ListFunctionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListFunctionsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListFunctionsCommandInput extends ListFunctionsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListFunctionsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListGraphqlApisRequest, ListGraphqlApisResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListGraphqlApisCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListGraphqlApisCommandInput extends ListGraphqlApisRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListGraphqlApisCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListGraphqlApisCommandOutput extends ListGraphqlApisResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListResolversByFunctionRequest, ListResolversByFunctionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListResolversByFunctionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListResolversByFunctionCommandInput extends ListResolversByFunctionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListResolversByFunctionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListResolversByFunctionCommandOutput extends ListResolversByFunctionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListResolversRequest, ListResolversResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListResolversCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListResolversCommandInput extends ListResolversRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListResolversCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListResolversCommandOutput extends ListResolversResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { ListTypesRequest, ListTypesResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListTypesCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListTypesCommandInput extends ListTypesRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListTypesCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListTypesCommandOutput extends ListTypesResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { StartSchemaCreationRequest, StartSchemaCreationResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link StartSchemaCreationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface StartSchemaCreationCommandInput extends StartSchemaCreationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link StartSchemaCreationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface StartSchemaCreationCommandOutput extends StartSchemaCreationResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link TagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link TagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UntagResourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UntagResourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UpdateApiCacheRequest, UpdateApiCacheResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateApiCacheCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateApiCacheCommandInput extends UpdateApiCacheRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateApiCacheCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateApiCacheCommandOutput extends UpdateApiCacheResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UpdateApiKeyRequest, UpdateApiKeyResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateApiKeyCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateApiKeyCommandInput extends UpdateApiKeyRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateApiKeyCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateApiKeyCommandOutput extends UpdateApiKeyResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateDataSourceCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateDataSourceCommandInput extends UpdateDataSourceRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateDataSourceCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateDataSourceCommandOutput extends UpdateDataSourceResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UpdateDomainNameRequest, UpdateDomainNameResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateDomainNameCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateDomainNameCommandInput extends UpdateDomainNameRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateDomainNameCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateDomainNameCommandOutput extends UpdateDomainNameResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UpdateFunctionRequest, UpdateFunctionResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateFunctionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateFunctionCommandInput extends UpdateFunctionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateFunctionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateFunctionCommandOutput extends UpdateFunctionResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UpdateGraphqlApiRequest, UpdateGraphqlApiResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateGraphqlApiCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateGraphqlApiCommandInput extends UpdateGraphqlApiRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateGraphqlApiCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateGraphqlApiCommandOutput extends UpdateGraphqlApiResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UpdateResolverRequest, UpdateResolverResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateResolverCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateResolverCommandInput extends UpdateResolverRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateResolverCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateResolverCommandOutput extends UpdateResolverResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { UpdateTypeRequest, UpdateTypeResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link UpdateTypeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface UpdateTypeCommandInput extends UpdateTypeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link UpdateTypeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface UpdateTypeCommandOutput extends UpdateTypeResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appsync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.281.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.281.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.272.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.281.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.272.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.272.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.272.0",
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
+
"@aws-sdk/smithy-client": "3.279.0",
|
|
43
43
|
"@aws-sdk/types": "3.272.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.272.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.279.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.272.0",
|