@aws-sdk/client-appsync 3.43.0 → 3.47.1
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/CHANGELOG.md +48 -0
- package/README.md +7 -7
- package/dist-cjs/AppSync.js +120 -0
- package/dist-cjs/commands/AssociateApiCommand.js +36 -0
- package/dist-cjs/commands/CreateDomainNameCommand.js +36 -0
- package/dist-cjs/commands/DeleteDomainNameCommand.js +36 -0
- package/dist-cjs/commands/DisassociateApiCommand.js +36 -0
- package/dist-cjs/commands/GetApiAssociationCommand.js +36 -0
- package/dist-cjs/commands/GetDomainNameCommand.js +36 -0
- package/dist-cjs/commands/ListDomainNamesCommand.js +36 -0
- package/dist-cjs/commands/UpdateDomainNameCommand.js +36 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +113 -65
- package/dist-cjs/protocols/Aws_restJson1.js +917 -93
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/AppSync.js +120 -0
- package/dist-es/commands/AssociateApiCommand.js +39 -0
- package/dist-es/commands/CreateDomainNameCommand.js +39 -0
- package/dist-es/commands/DeleteDomainNameCommand.js +39 -0
- package/dist-es/commands/DisassociateApiCommand.js +39 -0
- package/dist-es/commands/GetApiAssociationCommand.js +39 -0
- package/dist-es/commands/GetDomainNameCommand.js +39 -0
- package/dist-es/commands/ListDomainNamesCommand.js +39 -0
- package/dist-es/commands/UpdateDomainNameCommand.js +39 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +78 -44
- package/dist-es/protocols/Aws_restJson1.js +1048 -91
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/AppSync.d.ts +60 -5
- package/dist-types/AppSyncClient.d.ts +15 -3
- package/dist-types/commands/AssociateApiCommand.d.ts +35 -0
- package/dist-types/commands/CreateApiKeyCommand.d.ts +1 -2
- package/dist-types/commands/CreateDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +1 -1
- package/dist-types/commands/CreateResolverCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateApiCommand.d.ts +35 -0
- package/dist-types/commands/GetApiAssociationCommand.d.ts +35 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +556 -299
- package/dist-types/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/AppSync.d.ts +40 -0
- package/dist-types/ts3.4/AppSyncClient.d.ts +13 -3
- package/dist-types/ts3.4/commands/AssociateApiCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDomainNameCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDomainNameCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateApiCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetApiAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDomainNameCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDomainNameCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +201 -60
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +39 -46
|
@@ -5,10 +5,6 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
5
5
|
$fault: "client";
|
|
6
6
|
message?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare namespace AccessDeniedException {
|
|
9
|
-
|
|
10
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
11
|
-
}
|
|
12
8
|
export declare enum AuthenticationType {
|
|
13
9
|
AMAZON_COGNITO_USER_POOLS = "AMAZON_COGNITO_USER_POOLS",
|
|
14
10
|
API_KEY = "API_KEY",
|
|
@@ -72,6 +68,26 @@ export declare namespace AdditionalAuthenticationProvider {
|
|
|
72
68
|
|
|
73
69
|
const filterSensitiveLog: (obj: AdditionalAuthenticationProvider) => any;
|
|
74
70
|
}
|
|
71
|
+
export declare enum AssociationStatus {
|
|
72
|
+
Failed = "FAILED",
|
|
73
|
+
Processing = "PROCESSING",
|
|
74
|
+
Success = "SUCCESS"
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface ApiAssociation {
|
|
78
|
+
|
|
79
|
+
domainName?: string;
|
|
80
|
+
|
|
81
|
+
apiId?: string;
|
|
82
|
+
|
|
83
|
+
associationStatus?: AssociationStatus | string;
|
|
84
|
+
|
|
85
|
+
deploymentDetail?: string;
|
|
86
|
+
}
|
|
87
|
+
export declare namespace ApiAssociation {
|
|
88
|
+
|
|
89
|
+
const filterSensitiveLog: (obj: ApiAssociation) => any;
|
|
90
|
+
}
|
|
75
91
|
export declare enum ApiCachingBehavior {
|
|
76
92
|
FULL_REQUEST_CACHING = "FULL_REQUEST_CACHING",
|
|
77
93
|
PER_RESOLVER_CACHING = "PER_RESOLVER_CACHING"
|
|
@@ -140,29 +156,53 @@ export interface ApiKeyLimitExceededException extends __SmithyException, $Metada
|
|
|
140
156
|
$fault: "client";
|
|
141
157
|
message?: string;
|
|
142
158
|
}
|
|
143
|
-
export declare namespace ApiKeyLimitExceededException {
|
|
144
|
-
|
|
145
|
-
const filterSensitiveLog: (obj: ApiKeyLimitExceededException) => any;
|
|
146
|
-
}
|
|
147
159
|
|
|
148
160
|
export interface ApiKeyValidityOutOfBoundsException extends __SmithyException, $MetadataBearer {
|
|
149
161
|
name: "ApiKeyValidityOutOfBoundsException";
|
|
150
162
|
$fault: "client";
|
|
151
163
|
message?: string;
|
|
152
164
|
}
|
|
153
|
-
export declare namespace ApiKeyValidityOutOfBoundsException {
|
|
154
|
-
|
|
155
|
-
const filterSensitiveLog: (obj: ApiKeyValidityOutOfBoundsException) => any;
|
|
156
|
-
}
|
|
157
165
|
|
|
158
166
|
export interface ApiLimitExceededException extends __SmithyException, $MetadataBearer {
|
|
159
167
|
name: "ApiLimitExceededException";
|
|
160
168
|
$fault: "client";
|
|
161
169
|
message?: string;
|
|
162
170
|
}
|
|
163
|
-
export
|
|
171
|
+
export interface AssociateApiRequest {
|
|
172
|
+
|
|
173
|
+
domainName: string | undefined;
|
|
174
|
+
|
|
175
|
+
apiId: string | undefined;
|
|
176
|
+
}
|
|
177
|
+
export declare namespace AssociateApiRequest {
|
|
178
|
+
|
|
179
|
+
const filterSensitiveLog: (obj: AssociateApiRequest) => any;
|
|
180
|
+
}
|
|
181
|
+
export interface AssociateApiResponse {
|
|
164
182
|
|
|
165
|
-
|
|
183
|
+
apiAssociation?: ApiAssociation;
|
|
184
|
+
}
|
|
185
|
+
export declare namespace AssociateApiResponse {
|
|
186
|
+
|
|
187
|
+
const filterSensitiveLog: (obj: AssociateApiResponse) => any;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export interface BadRequestException extends __SmithyException, $MetadataBearer {
|
|
191
|
+
name: "BadRequestException";
|
|
192
|
+
$fault: "client";
|
|
193
|
+
message?: string;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export interface InternalFailureException extends __SmithyException, $MetadataBearer {
|
|
197
|
+
name: "InternalFailureException";
|
|
198
|
+
$fault: "server";
|
|
199
|
+
message?: string;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export interface NotFoundException extends __SmithyException, $MetadataBearer {
|
|
203
|
+
name: "NotFoundException";
|
|
204
|
+
$fault: "client";
|
|
205
|
+
message?: string;
|
|
166
206
|
}
|
|
167
207
|
export declare enum AuthorizationType {
|
|
168
208
|
AWS_IAM = "AWS_IAM"
|
|
@@ -190,25 +230,11 @@ export declare namespace AuthorizationConfig {
|
|
|
190
230
|
const filterSensitiveLog: (obj: AuthorizationConfig) => any;
|
|
191
231
|
}
|
|
192
232
|
|
|
193
|
-
export interface BadRequestException extends __SmithyException, $MetadataBearer {
|
|
194
|
-
name: "BadRequestException";
|
|
195
|
-
$fault: "client";
|
|
196
|
-
message?: string;
|
|
197
|
-
}
|
|
198
|
-
export declare namespace BadRequestException {
|
|
199
|
-
|
|
200
|
-
const filterSensitiveLog: (obj: BadRequestException) => any;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
233
|
export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
|
|
204
234
|
name: "ConcurrentModificationException";
|
|
205
235
|
$fault: "client";
|
|
206
236
|
message?: string;
|
|
207
237
|
}
|
|
208
|
-
export declare namespace ConcurrentModificationException {
|
|
209
|
-
|
|
210
|
-
const filterSensitiveLog: (obj: ConcurrentModificationException) => any;
|
|
211
|
-
}
|
|
212
238
|
|
|
213
239
|
export interface CreateApiCacheRequest {
|
|
214
240
|
|
|
@@ -238,35 +264,11 @@ export declare namespace CreateApiCacheResponse {
|
|
|
238
264
|
const filterSensitiveLog: (obj: CreateApiCacheResponse) => any;
|
|
239
265
|
}
|
|
240
266
|
|
|
241
|
-
export interface InternalFailureException extends __SmithyException, $MetadataBearer {
|
|
242
|
-
name: "InternalFailureException";
|
|
243
|
-
$fault: "server";
|
|
244
|
-
message?: string;
|
|
245
|
-
}
|
|
246
|
-
export declare namespace InternalFailureException {
|
|
247
|
-
|
|
248
|
-
const filterSensitiveLog: (obj: InternalFailureException) => any;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
export interface NotFoundException extends __SmithyException, $MetadataBearer {
|
|
252
|
-
name: "NotFoundException";
|
|
253
|
-
$fault: "client";
|
|
254
|
-
message?: string;
|
|
255
|
-
}
|
|
256
|
-
export declare namespace NotFoundException {
|
|
257
|
-
|
|
258
|
-
const filterSensitiveLog: (obj: NotFoundException) => any;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
267
|
export interface UnauthorizedException extends __SmithyException, $MetadataBearer {
|
|
262
268
|
name: "UnauthorizedException";
|
|
263
269
|
$fault: "client";
|
|
264
270
|
message?: string;
|
|
265
271
|
}
|
|
266
|
-
export declare namespace UnauthorizedException {
|
|
267
|
-
|
|
268
|
-
const filterSensitiveLog: (obj: UnauthorizedException) => any;
|
|
269
|
-
}
|
|
270
272
|
export interface CreateApiKeyRequest {
|
|
271
273
|
|
|
272
274
|
apiId: string | undefined;
|
|
@@ -293,10 +295,6 @@ export interface LimitExceededException extends __SmithyException, $MetadataBear
|
|
|
293
295
|
$fault: "client";
|
|
294
296
|
message?: string;
|
|
295
297
|
}
|
|
296
|
-
export declare namespace LimitExceededException {
|
|
297
|
-
|
|
298
|
-
const filterSensitiveLog: (obj: LimitExceededException) => any;
|
|
299
|
-
}
|
|
300
298
|
|
|
301
299
|
export interface DeltaSyncConfig {
|
|
302
300
|
|
|
@@ -474,6 +472,43 @@ export declare namespace CreateDataSourceResponse {
|
|
|
474
472
|
|
|
475
473
|
const filterSensitiveLog: (obj: CreateDataSourceResponse) => any;
|
|
476
474
|
}
|
|
475
|
+
export interface CreateDomainNameRequest {
|
|
476
|
+
|
|
477
|
+
domainName: string | undefined;
|
|
478
|
+
|
|
479
|
+
certificateArn: string | undefined;
|
|
480
|
+
|
|
481
|
+
description?: string;
|
|
482
|
+
}
|
|
483
|
+
export declare namespace CreateDomainNameRequest {
|
|
484
|
+
|
|
485
|
+
const filterSensitiveLog: (obj: CreateDomainNameRequest) => any;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
export interface DomainNameConfig {
|
|
489
|
+
|
|
490
|
+
domainName?: string;
|
|
491
|
+
|
|
492
|
+
description?: string;
|
|
493
|
+
|
|
494
|
+
certificateArn?: string;
|
|
495
|
+
|
|
496
|
+
appsyncDomainName?: string;
|
|
497
|
+
|
|
498
|
+
hostedZoneId?: string;
|
|
499
|
+
}
|
|
500
|
+
export declare namespace DomainNameConfig {
|
|
501
|
+
|
|
502
|
+
const filterSensitiveLog: (obj: DomainNameConfig) => any;
|
|
503
|
+
}
|
|
504
|
+
export interface CreateDomainNameResponse {
|
|
505
|
+
|
|
506
|
+
domainNameConfig?: DomainNameConfig;
|
|
507
|
+
}
|
|
508
|
+
export declare namespace CreateDomainNameResponse {
|
|
509
|
+
|
|
510
|
+
const filterSensitiveLog: (obj: CreateDomainNameResponse) => any;
|
|
511
|
+
}
|
|
477
512
|
export declare enum ConflictDetectionType {
|
|
478
513
|
NONE = "NONE",
|
|
479
514
|
VERSION = "VERSION"
|
|
@@ -523,6 +558,8 @@ export interface CreateFunctionRequest {
|
|
|
523
558
|
functionVersion: string | undefined;
|
|
524
559
|
|
|
525
560
|
syncConfig?: SyncConfig;
|
|
561
|
+
|
|
562
|
+
maxBatchSize?: number;
|
|
526
563
|
}
|
|
527
564
|
export declare namespace CreateFunctionRequest {
|
|
528
565
|
|
|
@@ -548,6 +585,8 @@ export interface FunctionConfiguration {
|
|
|
548
585
|
functionVersion?: string;
|
|
549
586
|
|
|
550
587
|
syncConfig?: SyncConfig;
|
|
588
|
+
|
|
589
|
+
maxBatchSize?: number;
|
|
551
590
|
}
|
|
552
591
|
export declare namespace FunctionConfiguration {
|
|
553
592
|
|
|
@@ -714,6 +753,8 @@ export interface CreateResolverRequest {
|
|
|
714
753
|
syncConfig?: SyncConfig;
|
|
715
754
|
|
|
716
755
|
cachingConfig?: CachingConfig;
|
|
756
|
+
|
|
757
|
+
maxBatchSize?: number;
|
|
717
758
|
}
|
|
718
759
|
export declare namespace CreateResolverRequest {
|
|
719
760
|
|
|
@@ -741,6 +782,8 @@ export interface Resolver {
|
|
|
741
782
|
syncConfig?: SyncConfig;
|
|
742
783
|
|
|
743
784
|
cachingConfig?: CachingConfig;
|
|
785
|
+
|
|
786
|
+
maxBatchSize?: number;
|
|
744
787
|
}
|
|
745
788
|
export declare namespace Resolver {
|
|
746
789
|
|
|
@@ -843,6 +886,20 @@ export declare namespace DeleteDataSourceResponse {
|
|
|
843
886
|
|
|
844
887
|
const filterSensitiveLog: (obj: DeleteDataSourceResponse) => any;
|
|
845
888
|
}
|
|
889
|
+
export interface DeleteDomainNameRequest {
|
|
890
|
+
|
|
891
|
+
domainName: string | undefined;
|
|
892
|
+
}
|
|
893
|
+
export declare namespace DeleteDomainNameRequest {
|
|
894
|
+
|
|
895
|
+
const filterSensitiveLog: (obj: DeleteDomainNameRequest) => any;
|
|
896
|
+
}
|
|
897
|
+
export interface DeleteDomainNameResponse {
|
|
898
|
+
}
|
|
899
|
+
export declare namespace DeleteDomainNameResponse {
|
|
900
|
+
|
|
901
|
+
const filterSensitiveLog: (obj: DeleteDomainNameResponse) => any;
|
|
902
|
+
}
|
|
846
903
|
export interface DeleteFunctionRequest {
|
|
847
904
|
|
|
848
905
|
apiId: string | undefined;
|
|
@@ -907,6 +964,20 @@ export declare namespace DeleteTypeResponse {
|
|
|
907
964
|
|
|
908
965
|
const filterSensitiveLog: (obj: DeleteTypeResponse) => any;
|
|
909
966
|
}
|
|
967
|
+
export interface DisassociateApiRequest {
|
|
968
|
+
|
|
969
|
+
domainName: string | undefined;
|
|
970
|
+
}
|
|
971
|
+
export declare namespace DisassociateApiRequest {
|
|
972
|
+
|
|
973
|
+
const filterSensitiveLog: (obj: DisassociateApiRequest) => any;
|
|
974
|
+
}
|
|
975
|
+
export interface DisassociateApiResponse {
|
|
976
|
+
}
|
|
977
|
+
export declare namespace DisassociateApiResponse {
|
|
978
|
+
|
|
979
|
+
const filterSensitiveLog: (obj: DisassociateApiResponse) => any;
|
|
980
|
+
}
|
|
910
981
|
|
|
911
982
|
export interface FlushApiCacheRequest {
|
|
912
983
|
|
|
@@ -923,6 +994,22 @@ export declare namespace FlushApiCacheResponse {
|
|
|
923
994
|
|
|
924
995
|
const filterSensitiveLog: (obj: FlushApiCacheResponse) => any;
|
|
925
996
|
}
|
|
997
|
+
export interface GetApiAssociationRequest {
|
|
998
|
+
|
|
999
|
+
domainName: string | undefined;
|
|
1000
|
+
}
|
|
1001
|
+
export declare namespace GetApiAssociationRequest {
|
|
1002
|
+
|
|
1003
|
+
const filterSensitiveLog: (obj: GetApiAssociationRequest) => any;
|
|
1004
|
+
}
|
|
1005
|
+
export interface GetApiAssociationResponse {
|
|
1006
|
+
|
|
1007
|
+
apiAssociation?: ApiAssociation;
|
|
1008
|
+
}
|
|
1009
|
+
export declare namespace GetApiAssociationResponse {
|
|
1010
|
+
|
|
1011
|
+
const filterSensitiveLog: (obj: GetApiAssociationResponse) => any;
|
|
1012
|
+
}
|
|
926
1013
|
|
|
927
1014
|
export interface GetApiCacheRequest {
|
|
928
1015
|
|
|
@@ -959,6 +1046,22 @@ export declare namespace GetDataSourceResponse {
|
|
|
959
1046
|
|
|
960
1047
|
const filterSensitiveLog: (obj: GetDataSourceResponse) => any;
|
|
961
1048
|
}
|
|
1049
|
+
export interface GetDomainNameRequest {
|
|
1050
|
+
|
|
1051
|
+
domainName: string | undefined;
|
|
1052
|
+
}
|
|
1053
|
+
export declare namespace GetDomainNameRequest {
|
|
1054
|
+
|
|
1055
|
+
const filterSensitiveLog: (obj: GetDomainNameRequest) => any;
|
|
1056
|
+
}
|
|
1057
|
+
export interface GetDomainNameResponse {
|
|
1058
|
+
|
|
1059
|
+
domainNameConfig?: DomainNameConfig;
|
|
1060
|
+
}
|
|
1061
|
+
export declare namespace GetDomainNameResponse {
|
|
1062
|
+
|
|
1063
|
+
const filterSensitiveLog: (obj: GetDomainNameResponse) => any;
|
|
1064
|
+
}
|
|
962
1065
|
export interface GetFunctionRequest {
|
|
963
1066
|
|
|
964
1067
|
apiId: string | undefined;
|
|
@@ -1023,10 +1126,6 @@ export interface GraphQLSchemaException extends __SmithyException, $MetadataBear
|
|
|
1023
1126
|
$fault: "client";
|
|
1024
1127
|
message?: string;
|
|
1025
1128
|
}
|
|
1026
|
-
export declare namespace GraphQLSchemaException {
|
|
1027
|
-
|
|
1028
|
-
const filterSensitiveLog: (obj: GraphQLSchemaException) => any;
|
|
1029
|
-
}
|
|
1030
1129
|
export interface GetResolverRequest {
|
|
1031
1130
|
|
|
1032
1131
|
apiId: string | undefined;
|
|
@@ -1137,6 +1236,26 @@ export declare namespace ListDataSourcesResponse {
|
|
|
1137
1236
|
|
|
1138
1237
|
const filterSensitiveLog: (obj: ListDataSourcesResponse) => any;
|
|
1139
1238
|
}
|
|
1239
|
+
export interface ListDomainNamesRequest {
|
|
1240
|
+
|
|
1241
|
+
nextToken?: string;
|
|
1242
|
+
|
|
1243
|
+
maxResults?: number;
|
|
1244
|
+
}
|
|
1245
|
+
export declare namespace ListDomainNamesRequest {
|
|
1246
|
+
|
|
1247
|
+
const filterSensitiveLog: (obj: ListDomainNamesRequest) => any;
|
|
1248
|
+
}
|
|
1249
|
+
export interface ListDomainNamesResponse {
|
|
1250
|
+
|
|
1251
|
+
domainNameConfigs?: DomainNameConfig[];
|
|
1252
|
+
|
|
1253
|
+
nextToken?: string;
|
|
1254
|
+
}
|
|
1255
|
+
export declare namespace ListDomainNamesResponse {
|
|
1256
|
+
|
|
1257
|
+
const filterSensitiveLog: (obj: ListDomainNamesResponse) => any;
|
|
1258
|
+
}
|
|
1140
1259
|
export interface ListFunctionsRequest {
|
|
1141
1260
|
|
|
1142
1261
|
apiId: string | undefined;
|
|
@@ -1403,6 +1522,24 @@ export declare namespace UpdateDataSourceResponse {
|
|
|
1403
1522
|
|
|
1404
1523
|
const filterSensitiveLog: (obj: UpdateDataSourceResponse) => any;
|
|
1405
1524
|
}
|
|
1525
|
+
export interface UpdateDomainNameRequest {
|
|
1526
|
+
|
|
1527
|
+
domainName: string | undefined;
|
|
1528
|
+
|
|
1529
|
+
description?: string;
|
|
1530
|
+
}
|
|
1531
|
+
export declare namespace UpdateDomainNameRequest {
|
|
1532
|
+
|
|
1533
|
+
const filterSensitiveLog: (obj: UpdateDomainNameRequest) => any;
|
|
1534
|
+
}
|
|
1535
|
+
export interface UpdateDomainNameResponse {
|
|
1536
|
+
|
|
1537
|
+
domainNameConfig?: DomainNameConfig;
|
|
1538
|
+
}
|
|
1539
|
+
export declare namespace UpdateDomainNameResponse {
|
|
1540
|
+
|
|
1541
|
+
const filterSensitiveLog: (obj: UpdateDomainNameResponse) => any;
|
|
1542
|
+
}
|
|
1406
1543
|
export interface UpdateFunctionRequest {
|
|
1407
1544
|
|
|
1408
1545
|
apiId: string | undefined;
|
|
@@ -1422,6 +1559,8 @@ export interface UpdateFunctionRequest {
|
|
|
1422
1559
|
functionVersion: string | undefined;
|
|
1423
1560
|
|
|
1424
1561
|
syncConfig?: SyncConfig;
|
|
1562
|
+
|
|
1563
|
+
maxBatchSize?: number;
|
|
1425
1564
|
}
|
|
1426
1565
|
export declare namespace UpdateFunctionRequest {
|
|
1427
1566
|
|
|
@@ -1488,6 +1627,8 @@ export interface UpdateResolverRequest {
|
|
|
1488
1627
|
syncConfig?: SyncConfig;
|
|
1489
1628
|
|
|
1490
1629
|
cachingConfig?: CachingConfig;
|
|
1630
|
+
|
|
1631
|
+
maxBatchSize?: number;
|
|
1491
1632
|
}
|
|
1492
1633
|
export declare namespace UpdateResolverRequest {
|
|
1493
1634
|
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AssociateApiCommandInput, AssociateApiCommandOutput } from "../commands/AssociateApiCommand";
|
|
3
4
|
import { CreateApiCacheCommandInput, CreateApiCacheCommandOutput } from "../commands/CreateApiCacheCommand";
|
|
4
5
|
import { CreateApiKeyCommandInput, CreateApiKeyCommandOutput } from "../commands/CreateApiKeyCommand";
|
|
5
6
|
import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "../commands/CreateDataSourceCommand";
|
|
7
|
+
import { CreateDomainNameCommandInput, CreateDomainNameCommandOutput } from "../commands/CreateDomainNameCommand";
|
|
6
8
|
import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "../commands/CreateFunctionCommand";
|
|
7
9
|
import { CreateGraphqlApiCommandInput, CreateGraphqlApiCommandOutput } from "../commands/CreateGraphqlApiCommand";
|
|
8
10
|
import { CreateResolverCommandInput, CreateResolverCommandOutput } from "../commands/CreateResolverCommand";
|
|
@@ -10,13 +12,17 @@ import { CreateTypeCommandInput, CreateTypeCommandOutput } from "../commands/Cre
|
|
|
10
12
|
import { DeleteApiCacheCommandInput, DeleteApiCacheCommandOutput } from "../commands/DeleteApiCacheCommand";
|
|
11
13
|
import { DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput } from "../commands/DeleteApiKeyCommand";
|
|
12
14
|
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "../commands/DeleteDataSourceCommand";
|
|
15
|
+
import { DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput } from "../commands/DeleteDomainNameCommand";
|
|
13
16
|
import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "../commands/DeleteFunctionCommand";
|
|
14
17
|
import { DeleteGraphqlApiCommandInput, DeleteGraphqlApiCommandOutput } from "../commands/DeleteGraphqlApiCommand";
|
|
15
18
|
import { DeleteResolverCommandInput, DeleteResolverCommandOutput } from "../commands/DeleteResolverCommand";
|
|
16
19
|
import { DeleteTypeCommandInput, DeleteTypeCommandOutput } from "../commands/DeleteTypeCommand";
|
|
20
|
+
import { DisassociateApiCommandInput, DisassociateApiCommandOutput } from "../commands/DisassociateApiCommand";
|
|
17
21
|
import { FlushApiCacheCommandInput, FlushApiCacheCommandOutput } from "../commands/FlushApiCacheCommand";
|
|
22
|
+
import { GetApiAssociationCommandInput, GetApiAssociationCommandOutput } from "../commands/GetApiAssociationCommand";
|
|
18
23
|
import { GetApiCacheCommandInput, GetApiCacheCommandOutput } from "../commands/GetApiCacheCommand";
|
|
19
24
|
import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "../commands/GetDataSourceCommand";
|
|
25
|
+
import { GetDomainNameCommandInput, GetDomainNameCommandOutput } from "../commands/GetDomainNameCommand";
|
|
20
26
|
import { GetFunctionCommandInput, GetFunctionCommandOutput } from "../commands/GetFunctionCommand";
|
|
21
27
|
import { GetGraphqlApiCommandInput, GetGraphqlApiCommandOutput } from "../commands/GetGraphqlApiCommand";
|
|
22
28
|
import { GetIntrospectionSchemaCommandInput, GetIntrospectionSchemaCommandOutput } from "../commands/GetIntrospectionSchemaCommand";
|
|
@@ -25,6 +31,7 @@ import { GetSchemaCreationStatusCommandInput, GetSchemaCreationStatusCommandOutp
|
|
|
25
31
|
import { GetTypeCommandInput, GetTypeCommandOutput } from "../commands/GetTypeCommand";
|
|
26
32
|
import { ListApiKeysCommandInput, ListApiKeysCommandOutput } from "../commands/ListApiKeysCommand";
|
|
27
33
|
import { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "../commands/ListDataSourcesCommand";
|
|
34
|
+
import { ListDomainNamesCommandInput, ListDomainNamesCommandOutput } from "../commands/ListDomainNamesCommand";
|
|
28
35
|
import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "../commands/ListFunctionsCommand";
|
|
29
36
|
import { ListGraphqlApisCommandInput, ListGraphqlApisCommandOutput } from "../commands/ListGraphqlApisCommand";
|
|
30
37
|
import { ListResolversByFunctionCommandInput, ListResolversByFunctionCommandOutput } from "../commands/ListResolversByFunctionCommand";
|
|
@@ -37,13 +44,16 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
37
44
|
import { UpdateApiCacheCommandInput, UpdateApiCacheCommandOutput } from "../commands/UpdateApiCacheCommand";
|
|
38
45
|
import { UpdateApiKeyCommandInput, UpdateApiKeyCommandOutput } from "../commands/UpdateApiKeyCommand";
|
|
39
46
|
import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "../commands/UpdateDataSourceCommand";
|
|
47
|
+
import { UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput } from "../commands/UpdateDomainNameCommand";
|
|
40
48
|
import { UpdateFunctionCommandInput, UpdateFunctionCommandOutput } from "../commands/UpdateFunctionCommand";
|
|
41
49
|
import { UpdateGraphqlApiCommandInput, UpdateGraphqlApiCommandOutput } from "../commands/UpdateGraphqlApiCommand";
|
|
42
50
|
import { UpdateResolverCommandInput, UpdateResolverCommandOutput } from "../commands/UpdateResolverCommand";
|
|
43
51
|
import { UpdateTypeCommandInput, UpdateTypeCommandOutput } from "../commands/UpdateTypeCommand";
|
|
52
|
+
export declare const serializeAws_restJson1AssociateApiCommand: (input: AssociateApiCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
53
|
export declare const serializeAws_restJson1CreateApiCacheCommand: (input: CreateApiCacheCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
54
|
export declare const serializeAws_restJson1CreateApiKeyCommand: (input: CreateApiKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
55
|
export declare const serializeAws_restJson1CreateDataSourceCommand: (input: CreateDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
export declare const serializeAws_restJson1CreateDomainNameCommand: (input: CreateDomainNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
57
|
export declare const serializeAws_restJson1CreateFunctionCommand: (input: CreateFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
58
|
export declare const serializeAws_restJson1CreateGraphqlApiCommand: (input: CreateGraphqlApiCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
59
|
export declare const serializeAws_restJson1CreateResolverCommand: (input: CreateResolverCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -51,13 +61,17 @@ export declare const serializeAws_restJson1CreateTypeCommand: (input: CreateType
|
|
|
51
61
|
export declare const serializeAws_restJson1DeleteApiCacheCommand: (input: DeleteApiCacheCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
62
|
export declare const serializeAws_restJson1DeleteApiKeyCommand: (input: DeleteApiKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
63
|
export declare const serializeAws_restJson1DeleteDataSourceCommand: (input: DeleteDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
export declare const serializeAws_restJson1DeleteDomainNameCommand: (input: DeleteDomainNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
65
|
export declare const serializeAws_restJson1DeleteFunctionCommand: (input: DeleteFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
66
|
export declare const serializeAws_restJson1DeleteGraphqlApiCommand: (input: DeleteGraphqlApiCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
67
|
export declare const serializeAws_restJson1DeleteResolverCommand: (input: DeleteResolverCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
68
|
export declare const serializeAws_restJson1DeleteTypeCommand: (input: DeleteTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
+
export declare const serializeAws_restJson1DisassociateApiCommand: (input: DisassociateApiCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
70
|
export declare const serializeAws_restJson1FlushApiCacheCommand: (input: FlushApiCacheCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
export declare const serializeAws_restJson1GetApiAssociationCommand: (input: GetApiAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
72
|
export declare const serializeAws_restJson1GetApiCacheCommand: (input: GetApiCacheCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
73
|
export declare const serializeAws_restJson1GetDataSourceCommand: (input: GetDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_restJson1GetDomainNameCommand: (input: GetDomainNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
75
|
export declare const serializeAws_restJson1GetFunctionCommand: (input: GetFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
76
|
export declare const serializeAws_restJson1GetGraphqlApiCommand: (input: GetGraphqlApiCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
77
|
export declare const serializeAws_restJson1GetIntrospectionSchemaCommand: (input: GetIntrospectionSchemaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -66,6 +80,7 @@ export declare const serializeAws_restJson1GetSchemaCreationStatusCommand: (inpu
|
|
|
66
80
|
export declare const serializeAws_restJson1GetTypeCommand: (input: GetTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
81
|
export declare const serializeAws_restJson1ListApiKeysCommand: (input: ListApiKeysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
82
|
export declare const serializeAws_restJson1ListDataSourcesCommand: (input: ListDataSourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
export declare const serializeAws_restJson1ListDomainNamesCommand: (input: ListDomainNamesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
84
|
export declare const serializeAws_restJson1ListFunctionsCommand: (input: ListFunctionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
85
|
export declare const serializeAws_restJson1ListGraphqlApisCommand: (input: ListGraphqlApisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
86
|
export declare const serializeAws_restJson1ListResolversCommand: (input: ListResolversCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -78,13 +93,16 @@ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagRe
|
|
|
78
93
|
export declare const serializeAws_restJson1UpdateApiCacheCommand: (input: UpdateApiCacheCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
94
|
export declare const serializeAws_restJson1UpdateApiKeyCommand: (input: UpdateApiKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
95
|
export declare const serializeAws_restJson1UpdateDataSourceCommand: (input: UpdateDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
export declare const serializeAws_restJson1UpdateDomainNameCommand: (input: UpdateDomainNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
97
|
export declare const serializeAws_restJson1UpdateFunctionCommand: (input: UpdateFunctionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
98
|
export declare const serializeAws_restJson1UpdateGraphqlApiCommand: (input: UpdateGraphqlApiCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
99
|
export declare const serializeAws_restJson1UpdateResolverCommand: (input: UpdateResolverCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
100
|
export declare const serializeAws_restJson1UpdateTypeCommand: (input: UpdateTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
+
export declare const deserializeAws_restJson1AssociateApiCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateApiCommandOutput>;
|
|
85
102
|
export declare const deserializeAws_restJson1CreateApiCacheCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApiCacheCommandOutput>;
|
|
86
103
|
export declare const deserializeAws_restJson1CreateApiKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApiKeyCommandOutput>;
|
|
87
104
|
export declare const deserializeAws_restJson1CreateDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataSourceCommandOutput>;
|
|
105
|
+
export declare const deserializeAws_restJson1CreateDomainNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDomainNameCommandOutput>;
|
|
88
106
|
export declare const deserializeAws_restJson1CreateFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFunctionCommandOutput>;
|
|
89
107
|
export declare const deserializeAws_restJson1CreateGraphqlApiCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGraphqlApiCommandOutput>;
|
|
90
108
|
export declare const deserializeAws_restJson1CreateResolverCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateResolverCommandOutput>;
|
|
@@ -92,13 +110,17 @@ export declare const deserializeAws_restJson1CreateTypeCommand: (output: __HttpR
|
|
|
92
110
|
export declare const deserializeAws_restJson1DeleteApiCacheCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApiCacheCommandOutput>;
|
|
93
111
|
export declare const deserializeAws_restJson1DeleteApiKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApiKeyCommandOutput>;
|
|
94
112
|
export declare const deserializeAws_restJson1DeleteDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataSourceCommandOutput>;
|
|
113
|
+
export declare const deserializeAws_restJson1DeleteDomainNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainNameCommandOutput>;
|
|
95
114
|
export declare const deserializeAws_restJson1DeleteFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFunctionCommandOutput>;
|
|
96
115
|
export declare const deserializeAws_restJson1DeleteGraphqlApiCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGraphqlApiCommandOutput>;
|
|
97
116
|
export declare const deserializeAws_restJson1DeleteResolverCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResolverCommandOutput>;
|
|
98
117
|
export declare const deserializeAws_restJson1DeleteTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTypeCommandOutput>;
|
|
118
|
+
export declare const deserializeAws_restJson1DisassociateApiCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateApiCommandOutput>;
|
|
99
119
|
export declare const deserializeAws_restJson1FlushApiCacheCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<FlushApiCacheCommandOutput>;
|
|
120
|
+
export declare const deserializeAws_restJson1GetApiAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApiAssociationCommandOutput>;
|
|
100
121
|
export declare const deserializeAws_restJson1GetApiCacheCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApiCacheCommandOutput>;
|
|
101
122
|
export declare const deserializeAws_restJson1GetDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataSourceCommandOutput>;
|
|
123
|
+
export declare const deserializeAws_restJson1GetDomainNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainNameCommandOutput>;
|
|
102
124
|
export declare const deserializeAws_restJson1GetFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetFunctionCommandOutput>;
|
|
103
125
|
export declare const deserializeAws_restJson1GetGraphqlApiCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetGraphqlApiCommandOutput>;
|
|
104
126
|
export declare const deserializeAws_restJson1GetIntrospectionSchemaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetIntrospectionSchemaCommandOutput>;
|
|
@@ -107,6 +129,7 @@ export declare const deserializeAws_restJson1GetSchemaCreationStatusCommand: (ou
|
|
|
107
129
|
export declare const deserializeAws_restJson1GetTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTypeCommandOutput>;
|
|
108
130
|
export declare const deserializeAws_restJson1ListApiKeysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApiKeysCommandOutput>;
|
|
109
131
|
export declare const deserializeAws_restJson1ListDataSourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataSourcesCommandOutput>;
|
|
132
|
+
export declare const deserializeAws_restJson1ListDomainNamesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainNamesCommandOutput>;
|
|
110
133
|
export declare const deserializeAws_restJson1ListFunctionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFunctionsCommandOutput>;
|
|
111
134
|
export declare const deserializeAws_restJson1ListGraphqlApisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGraphqlApisCommandOutput>;
|
|
112
135
|
export declare const deserializeAws_restJson1ListResolversCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResolversCommandOutput>;
|
|
@@ -119,6 +142,7 @@ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __Ht
|
|
|
119
142
|
export declare const deserializeAws_restJson1UpdateApiCacheCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApiCacheCommandOutput>;
|
|
120
143
|
export declare const deserializeAws_restJson1UpdateApiKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApiKeyCommandOutput>;
|
|
121
144
|
export declare const deserializeAws_restJson1UpdateDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataSourceCommandOutput>;
|
|
145
|
+
export declare const deserializeAws_restJson1UpdateDomainNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDomainNameCommandOutput>;
|
|
122
146
|
export declare const deserializeAws_restJson1UpdateFunctionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFunctionCommandOutput>;
|
|
123
147
|
export declare const deserializeAws_restJson1UpdateGraphqlApiCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGraphqlApiCommandOutput>;
|
|
124
148
|
export declare const deserializeAws_restJson1UpdateResolverCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResolverCommandOutput>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { AppSyncClientConfig } from "./AppSyncClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: AppSyncClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -10,7 +11,7 @@ export declare const getRuntimeConfig: (config: AppSyncClientConfig) => {
|
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { AppSyncClientConfig } from "./AppSyncClient";
|
|
3
3
|
|
|
4
4
|
export declare const getRuntimeConfig: (config: AppSyncClientConfig) => {
|
|
5
5
|
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
6
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
7
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
8
9
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
9
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
10
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
11
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
12
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
13
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
14
15
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
17
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: AppSyncClientConfig) => {
|
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
26
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
27
28
|
tls?: boolean | undefined;
|
|
28
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|