@aws-sdk/client-appsync 3.933.0 → 3.935.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-cjs/index.js +180 -179
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +179 -0
- package/dist-es/models/errors.js +161 -0
- package/dist-es/models/models_0.js +1 -340
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +451 -0
- package/dist-types/models/errors.d.ts +178 -0
- package/dist-types/models/models_0.d.ts +1 -627
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +236 -0
- package/dist-types/ts3.4/models/errors.d.ts +99 -0
- package/dist-types/ts3.4/models/models_0.d.ts +35 -333
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,32 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AppSyncServiceException as __BaseException } from "./AppSyncServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You don't have access to perform this operation on this resource.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
* @enum
|
|
18
|
-
*/
|
|
19
|
-
export declare const AuthenticationType: {
|
|
20
|
-
readonly AMAZON_COGNITO_USER_POOLS: "AMAZON_COGNITO_USER_POOLS";
|
|
21
|
-
readonly API_KEY: "API_KEY";
|
|
22
|
-
readonly AWS_IAM: "AWS_IAM";
|
|
23
|
-
readonly AWS_LAMBDA: "AWS_LAMBDA";
|
|
24
|
-
readonly OPENID_CONNECT: "OPENID_CONNECT";
|
|
25
|
-
};
|
|
26
|
-
/**
|
|
27
|
-
* @public
|
|
28
|
-
*/
|
|
29
|
-
export type AuthenticationType = (typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
1
|
+
import { ApiCacheStatus, ApiCacheType, ApiCachingBehavior, AssociationStatus, AuthenticationType, AuthorizationType, CacheHealthMetricsConfig, ConflictDetectionType, ConflictHandlerType, DataSourceIntrospectionStatus, DataSourceLevelMetricsBehavior, DataSourceLevelMetricsConfig, DataSourceType, DefaultAction, EventLogLevel, FieldLogLevel, GraphQLApiIntrospectionConfig, GraphQLApiType, GraphQLApiVisibility, HandlerBehavior, InvokeType, MergeType, OperationLevelMetricsConfig, OutputType, Ownership, RelationalDatabaseSourceType, ResolverKind, ResolverLevelMetricsBehavior, ResolverLevelMetricsConfig, RuntimeName, SchemaStatus, SourceApiAssociationStatus, TypeDefinitionFormat } from "./enums";
|
|
30
2
|
/**
|
|
31
3
|
* <p>A <code>LambdaAuthorizerConfig</code> specifies how to authorize AppSync
|
|
32
4
|
* API access when using the <code>AWS_LAMBDA</code> authorizer mode. Be aware that an AppSync API can have only one Lambda authorizer configured at a
|
|
@@ -208,21 +180,6 @@ export interface AuthMode {
|
|
|
208
180
|
*/
|
|
209
181
|
authType: AuthenticationType | undefined;
|
|
210
182
|
}
|
|
211
|
-
/**
|
|
212
|
-
* @public
|
|
213
|
-
* @enum
|
|
214
|
-
*/
|
|
215
|
-
export declare const EventLogLevel: {
|
|
216
|
-
readonly ALL: "ALL";
|
|
217
|
-
readonly DEBUG: "DEBUG";
|
|
218
|
-
readonly ERROR: "ERROR";
|
|
219
|
-
readonly INFO: "INFO";
|
|
220
|
-
readonly NONE: "NONE";
|
|
221
|
-
};
|
|
222
|
-
/**
|
|
223
|
-
* @public
|
|
224
|
-
*/
|
|
225
|
-
export type EventLogLevel = (typeof EventLogLevel)[keyof typeof EventLogLevel];
|
|
226
183
|
/**
|
|
227
184
|
* <p>Describes the CloudWatch Logs configuration for the Event API.</p>
|
|
228
185
|
* @public
|
|
@@ -333,19 +290,6 @@ export interface Api {
|
|
|
333
290
|
*/
|
|
334
291
|
eventConfig?: EventConfig | undefined;
|
|
335
292
|
}
|
|
336
|
-
/**
|
|
337
|
-
* @public
|
|
338
|
-
* @enum
|
|
339
|
-
*/
|
|
340
|
-
export declare const AssociationStatus: {
|
|
341
|
-
readonly Failed: "FAILED";
|
|
342
|
-
readonly Processing: "PROCESSING";
|
|
343
|
-
readonly Success: "SUCCESS";
|
|
344
|
-
};
|
|
345
|
-
/**
|
|
346
|
-
* @public
|
|
347
|
-
*/
|
|
348
|
-
export type AssociationStatus = (typeof AssociationStatus)[keyof typeof AssociationStatus];
|
|
349
293
|
/**
|
|
350
294
|
* <p>Describes an <code>ApiAssociation</code> object.</p>
|
|
351
295
|
* @public
|
|
@@ -389,71 +333,6 @@ export interface ApiAssociation {
|
|
|
389
333
|
*/
|
|
390
334
|
deploymentDetail?: string | undefined;
|
|
391
335
|
}
|
|
392
|
-
/**
|
|
393
|
-
* @public
|
|
394
|
-
* @enum
|
|
395
|
-
*/
|
|
396
|
-
export declare const ApiCachingBehavior: {
|
|
397
|
-
readonly FULL_REQUEST_CACHING: "FULL_REQUEST_CACHING";
|
|
398
|
-
readonly OPERATION_LEVEL_CACHING: "OPERATION_LEVEL_CACHING";
|
|
399
|
-
readonly PER_RESOLVER_CACHING: "PER_RESOLVER_CACHING";
|
|
400
|
-
};
|
|
401
|
-
/**
|
|
402
|
-
* @public
|
|
403
|
-
*/
|
|
404
|
-
export type ApiCachingBehavior = (typeof ApiCachingBehavior)[keyof typeof ApiCachingBehavior];
|
|
405
|
-
/**
|
|
406
|
-
* @public
|
|
407
|
-
* @enum
|
|
408
|
-
*/
|
|
409
|
-
export declare const CacheHealthMetricsConfig: {
|
|
410
|
-
readonly DISABLED: "DISABLED";
|
|
411
|
-
readonly ENABLED: "ENABLED";
|
|
412
|
-
};
|
|
413
|
-
/**
|
|
414
|
-
* @public
|
|
415
|
-
*/
|
|
416
|
-
export type CacheHealthMetricsConfig = (typeof CacheHealthMetricsConfig)[keyof typeof CacheHealthMetricsConfig];
|
|
417
|
-
/**
|
|
418
|
-
* @public
|
|
419
|
-
* @enum
|
|
420
|
-
*/
|
|
421
|
-
export declare const ApiCacheStatus: {
|
|
422
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
423
|
-
readonly CREATING: "CREATING";
|
|
424
|
-
readonly DELETING: "DELETING";
|
|
425
|
-
readonly FAILED: "FAILED";
|
|
426
|
-
readonly MODIFYING: "MODIFYING";
|
|
427
|
-
};
|
|
428
|
-
/**
|
|
429
|
-
* @public
|
|
430
|
-
*/
|
|
431
|
-
export type ApiCacheStatus = (typeof ApiCacheStatus)[keyof typeof ApiCacheStatus];
|
|
432
|
-
/**
|
|
433
|
-
* @public
|
|
434
|
-
* @enum
|
|
435
|
-
*/
|
|
436
|
-
export declare const ApiCacheType: {
|
|
437
|
-
readonly LARGE: "LARGE";
|
|
438
|
-
readonly LARGE_12X: "LARGE_12X";
|
|
439
|
-
readonly LARGE_2X: "LARGE_2X";
|
|
440
|
-
readonly LARGE_4X: "LARGE_4X";
|
|
441
|
-
readonly LARGE_8X: "LARGE_8X";
|
|
442
|
-
readonly MEDIUM: "MEDIUM";
|
|
443
|
-
readonly R4_2XLARGE: "R4_2XLARGE";
|
|
444
|
-
readonly R4_4XLARGE: "R4_4XLARGE";
|
|
445
|
-
readonly R4_8XLARGE: "R4_8XLARGE";
|
|
446
|
-
readonly R4_LARGE: "R4_LARGE";
|
|
447
|
-
readonly R4_XLARGE: "R4_XLARGE";
|
|
448
|
-
readonly SMALL: "SMALL";
|
|
449
|
-
readonly T2_MEDIUM: "T2_MEDIUM";
|
|
450
|
-
readonly T2_SMALL: "T2_SMALL";
|
|
451
|
-
readonly XLARGE: "XLARGE";
|
|
452
|
-
};
|
|
453
|
-
/**
|
|
454
|
-
* @public
|
|
455
|
-
*/
|
|
456
|
-
export type ApiCacheType = (typeof ApiCacheType)[keyof typeof ApiCacheType];
|
|
457
336
|
/**
|
|
458
337
|
* <p>The <code>ApiCache</code> object.</p>
|
|
459
338
|
* @public
|
|
@@ -724,54 +603,6 @@ export interface ApiKey {
|
|
|
724
603
|
*/
|
|
725
604
|
deletes?: number | undefined;
|
|
726
605
|
}
|
|
727
|
-
/**
|
|
728
|
-
* <p>The API key exceeded a limit. Try your request again.</p>
|
|
729
|
-
* @public
|
|
730
|
-
*/
|
|
731
|
-
export declare class ApiKeyLimitExceededException extends __BaseException {
|
|
732
|
-
readonly name: "ApiKeyLimitExceededException";
|
|
733
|
-
readonly $fault: "client";
|
|
734
|
-
/**
|
|
735
|
-
* @internal
|
|
736
|
-
*/
|
|
737
|
-
constructor(opts: __ExceptionOptionType<ApiKeyLimitExceededException, __BaseException>);
|
|
738
|
-
}
|
|
739
|
-
/**
|
|
740
|
-
* <p>The API key expiration must be set to a value between 1 and 365 days from creation (for
|
|
741
|
-
* <code>CreateApiKey</code>) or from update (for <code>UpdateApiKey</code>).</p>
|
|
742
|
-
* @public
|
|
743
|
-
*/
|
|
744
|
-
export declare class ApiKeyValidityOutOfBoundsException extends __BaseException {
|
|
745
|
-
readonly name: "ApiKeyValidityOutOfBoundsException";
|
|
746
|
-
readonly $fault: "client";
|
|
747
|
-
/**
|
|
748
|
-
* @internal
|
|
749
|
-
*/
|
|
750
|
-
constructor(opts: __ExceptionOptionType<ApiKeyValidityOutOfBoundsException, __BaseException>);
|
|
751
|
-
}
|
|
752
|
-
/**
|
|
753
|
-
* <p>The GraphQL API exceeded a limit. Try your request again.</p>
|
|
754
|
-
* @public
|
|
755
|
-
*/
|
|
756
|
-
export declare class ApiLimitExceededException extends __BaseException {
|
|
757
|
-
readonly name: "ApiLimitExceededException";
|
|
758
|
-
readonly $fault: "client";
|
|
759
|
-
/**
|
|
760
|
-
* @internal
|
|
761
|
-
*/
|
|
762
|
-
constructor(opts: __ExceptionOptionType<ApiLimitExceededException, __BaseException>);
|
|
763
|
-
}
|
|
764
|
-
/**
|
|
765
|
-
* @public
|
|
766
|
-
* @enum
|
|
767
|
-
*/
|
|
768
|
-
export declare const RuntimeName: {
|
|
769
|
-
readonly APPSYNC_JS: "APPSYNC_JS";
|
|
770
|
-
};
|
|
771
|
-
/**
|
|
772
|
-
* @public
|
|
773
|
-
*/
|
|
774
|
-
export type RuntimeName = (typeof RuntimeName)[keyof typeof RuntimeName];
|
|
775
606
|
/**
|
|
776
607
|
* <p>Describes a runtime used by an Amazon Web Services AppSync pipeline resolver or Amazon Web Services AppSync function. Specifies the name and version of the runtime to use. Note
|
|
777
608
|
* that if a runtime is specified, code must also be specified.</p>
|
|
@@ -874,79 +705,6 @@ export interface BadRequestDetail {
|
|
|
874
705
|
*/
|
|
875
706
|
codeErrors?: CodeError[] | undefined;
|
|
876
707
|
}
|
|
877
|
-
/**
|
|
878
|
-
* @public
|
|
879
|
-
* @enum
|
|
880
|
-
*/
|
|
881
|
-
export declare const BadRequestReason: {
|
|
882
|
-
readonly CODE_ERROR: "CODE_ERROR";
|
|
883
|
-
};
|
|
884
|
-
/**
|
|
885
|
-
* @public
|
|
886
|
-
*/
|
|
887
|
-
export type BadRequestReason = (typeof BadRequestReason)[keyof typeof BadRequestReason];
|
|
888
|
-
/**
|
|
889
|
-
* <p>The request is not well formed. For example, a value is invalid or a required field is
|
|
890
|
-
* missing. Check the field values, and then try again.</p>
|
|
891
|
-
* @public
|
|
892
|
-
*/
|
|
893
|
-
export declare class BadRequestException extends __BaseException {
|
|
894
|
-
readonly name: "BadRequestException";
|
|
895
|
-
readonly $fault: "client";
|
|
896
|
-
/**
|
|
897
|
-
* <p>Provides context for the cause of the bad request. The only supported value is
|
|
898
|
-
* <code>CODE_ERROR</code>.</p>
|
|
899
|
-
* @public
|
|
900
|
-
*/
|
|
901
|
-
reason?: BadRequestReason | undefined;
|
|
902
|
-
/**
|
|
903
|
-
* <p>Provides further details for the reason behind the bad request. For reason type
|
|
904
|
-
* <code>CODE_ERROR</code>, the detail will contain a list of code errors.</p>
|
|
905
|
-
* @public
|
|
906
|
-
*/
|
|
907
|
-
detail?: BadRequestDetail | undefined;
|
|
908
|
-
/**
|
|
909
|
-
* @internal
|
|
910
|
-
*/
|
|
911
|
-
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
912
|
-
}
|
|
913
|
-
/**
|
|
914
|
-
* <p>An internal AppSync error occurred. Try your request again.</p>
|
|
915
|
-
* @public
|
|
916
|
-
*/
|
|
917
|
-
export declare class InternalFailureException extends __BaseException {
|
|
918
|
-
readonly name: "InternalFailureException";
|
|
919
|
-
readonly $fault: "server";
|
|
920
|
-
/**
|
|
921
|
-
* @internal
|
|
922
|
-
*/
|
|
923
|
-
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
924
|
-
}
|
|
925
|
-
/**
|
|
926
|
-
* <p>The resource specified in the request was not found. Check the resource, and then try
|
|
927
|
-
* again.</p>
|
|
928
|
-
* @public
|
|
929
|
-
*/
|
|
930
|
-
export declare class NotFoundException extends __BaseException {
|
|
931
|
-
readonly name: "NotFoundException";
|
|
932
|
-
readonly $fault: "client";
|
|
933
|
-
/**
|
|
934
|
-
* @internal
|
|
935
|
-
*/
|
|
936
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
937
|
-
}
|
|
938
|
-
/**
|
|
939
|
-
* @public
|
|
940
|
-
* @enum
|
|
941
|
-
*/
|
|
942
|
-
export declare const MergeType: {
|
|
943
|
-
readonly AUTO_MERGE: "AUTO_MERGE";
|
|
944
|
-
readonly MANUAL_MERGE: "MANUAL_MERGE";
|
|
945
|
-
};
|
|
946
|
-
/**
|
|
947
|
-
* @public
|
|
948
|
-
*/
|
|
949
|
-
export type MergeType = (typeof MergeType)[keyof typeof MergeType];
|
|
950
708
|
/**
|
|
951
709
|
* <p>Describes properties used to specify configurations related to a source API.</p>
|
|
952
710
|
* @public
|
|
@@ -996,24 +754,6 @@ export interface AssociateMergedGraphqlApiRequest {
|
|
|
996
754
|
*/
|
|
997
755
|
sourceApiAssociationConfig?: SourceApiAssociationConfig | undefined;
|
|
998
756
|
}
|
|
999
|
-
/**
|
|
1000
|
-
* @public
|
|
1001
|
-
* @enum
|
|
1002
|
-
*/
|
|
1003
|
-
export declare const SourceApiAssociationStatus: {
|
|
1004
|
-
readonly AUTO_MERGE_SCHEDULE_FAILED: "AUTO_MERGE_SCHEDULE_FAILED";
|
|
1005
|
-
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
1006
|
-
readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
|
|
1007
|
-
readonly DELETION_SCHEDULED: "DELETION_SCHEDULED";
|
|
1008
|
-
readonly MERGE_FAILED: "MERGE_FAILED";
|
|
1009
|
-
readonly MERGE_IN_PROGRESS: "MERGE_IN_PROGRESS";
|
|
1010
|
-
readonly MERGE_SCHEDULED: "MERGE_SCHEDULED";
|
|
1011
|
-
readonly MERGE_SUCCESS: "MERGE_SUCCESS";
|
|
1012
|
-
};
|
|
1013
|
-
/**
|
|
1014
|
-
* @public
|
|
1015
|
-
*/
|
|
1016
|
-
export type SourceApiAssociationStatus = (typeof SourceApiAssociationStatus)[keyof typeof SourceApiAssociationStatus];
|
|
1017
757
|
/**
|
|
1018
758
|
* <p>Describes the configuration of a source API. A source API is a GraphQL API that is
|
|
1019
759
|
* linked to a merged API. There can be multiple source APIs attached to each merged API. When
|
|
@@ -1091,43 +831,6 @@ export interface AssociateMergedGraphqlApiResponse {
|
|
|
1091
831
|
*/
|
|
1092
832
|
sourceApiAssociation?: SourceApiAssociation | undefined;
|
|
1093
833
|
}
|
|
1094
|
-
/**
|
|
1095
|
-
* <p>Another modification is in progress at this time and it must complete before you can
|
|
1096
|
-
* make your change.</p>
|
|
1097
|
-
* @public
|
|
1098
|
-
*/
|
|
1099
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
1100
|
-
readonly name: "ConcurrentModificationException";
|
|
1101
|
-
readonly $fault: "client";
|
|
1102
|
-
/**
|
|
1103
|
-
* @internal
|
|
1104
|
-
*/
|
|
1105
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
1106
|
-
}
|
|
1107
|
-
/**
|
|
1108
|
-
* <p>The request exceeded a limit. Try your request again.</p>
|
|
1109
|
-
* @public
|
|
1110
|
-
*/
|
|
1111
|
-
export declare class LimitExceededException extends __BaseException {
|
|
1112
|
-
readonly name: "LimitExceededException";
|
|
1113
|
-
readonly $fault: "client";
|
|
1114
|
-
/**
|
|
1115
|
-
* @internal
|
|
1116
|
-
*/
|
|
1117
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
1118
|
-
}
|
|
1119
|
-
/**
|
|
1120
|
-
* <p>You aren't authorized to perform this operation.</p>
|
|
1121
|
-
* @public
|
|
1122
|
-
*/
|
|
1123
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
1124
|
-
readonly name: "UnauthorizedException";
|
|
1125
|
-
readonly $fault: "client";
|
|
1126
|
-
/**
|
|
1127
|
-
* @internal
|
|
1128
|
-
*/
|
|
1129
|
-
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
1130
|
-
}
|
|
1131
834
|
/**
|
|
1132
835
|
* @public
|
|
1133
836
|
*/
|
|
@@ -1169,17 +872,6 @@ export interface AssociateSourceGraphqlApiResponse {
|
|
|
1169
872
|
*/
|
|
1170
873
|
sourceApiAssociation?: SourceApiAssociation | undefined;
|
|
1171
874
|
}
|
|
1172
|
-
/**
|
|
1173
|
-
* @public
|
|
1174
|
-
* @enum
|
|
1175
|
-
*/
|
|
1176
|
-
export declare const AuthorizationType: {
|
|
1177
|
-
readonly AWS_IAM: "AWS_IAM";
|
|
1178
|
-
};
|
|
1179
|
-
/**
|
|
1180
|
-
* @public
|
|
1181
|
-
*/
|
|
1182
|
-
export type AuthorizationType = (typeof AuthorizationType)[keyof typeof AuthorizationType];
|
|
1183
875
|
/**
|
|
1184
876
|
* <p>The Identity and Access Management (IAM) configuration.</p>
|
|
1185
877
|
* @public
|
|
@@ -1256,18 +948,6 @@ export interface CreateApiResponse {
|
|
|
1256
948
|
*/
|
|
1257
949
|
api?: Api | undefined;
|
|
1258
950
|
}
|
|
1259
|
-
/**
|
|
1260
|
-
* <p>The operation exceeded the service quota for this resource.</p>
|
|
1261
|
-
* @public
|
|
1262
|
-
*/
|
|
1263
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1264
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1265
|
-
readonly $fault: "client";
|
|
1266
|
-
/**
|
|
1267
|
-
* @internal
|
|
1268
|
-
*/
|
|
1269
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1270
|
-
}
|
|
1271
951
|
/**
|
|
1272
952
|
* <p>Represents the input of a <code>CreateApiCache</code> operation.</p>
|
|
1273
953
|
* @public
|
|
@@ -1463,44 +1143,6 @@ export interface CreateApiKeyResponse {
|
|
|
1463
1143
|
*/
|
|
1464
1144
|
apiKey?: ApiKey | undefined;
|
|
1465
1145
|
}
|
|
1466
|
-
/**
|
|
1467
|
-
* <p>A conflict with a previous successful update is detected. This typically occurs when the
|
|
1468
|
-
* previous update did not have time to propagate before the next update was made. A retry
|
|
1469
|
-
* (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
1470
|
-
* @public
|
|
1471
|
-
*/
|
|
1472
|
-
export declare class ConflictException extends __BaseException {
|
|
1473
|
-
readonly name: "ConflictException";
|
|
1474
|
-
readonly $fault: "client";
|
|
1475
|
-
/**
|
|
1476
|
-
* @internal
|
|
1477
|
-
*/
|
|
1478
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1479
|
-
}
|
|
1480
|
-
/**
|
|
1481
|
-
* @public
|
|
1482
|
-
* @enum
|
|
1483
|
-
*/
|
|
1484
|
-
export declare const HandlerBehavior: {
|
|
1485
|
-
readonly CODE: "CODE";
|
|
1486
|
-
readonly DIRECT: "DIRECT";
|
|
1487
|
-
};
|
|
1488
|
-
/**
|
|
1489
|
-
* @public
|
|
1490
|
-
*/
|
|
1491
|
-
export type HandlerBehavior = (typeof HandlerBehavior)[keyof typeof HandlerBehavior];
|
|
1492
|
-
/**
|
|
1493
|
-
* @public
|
|
1494
|
-
* @enum
|
|
1495
|
-
*/
|
|
1496
|
-
export declare const InvokeType: {
|
|
1497
|
-
readonly EVENT: "EVENT";
|
|
1498
|
-
readonly REQUEST_RESPONSE: "REQUEST_RESPONSE";
|
|
1499
|
-
};
|
|
1500
|
-
/**
|
|
1501
|
-
* @public
|
|
1502
|
-
*/
|
|
1503
|
-
export type InvokeType = (typeof InvokeType)[keyof typeof InvokeType];
|
|
1504
1146
|
/**
|
|
1505
1147
|
* <p>The configuration for a Lambda data source.</p>
|
|
1506
1148
|
* @public
|
|
@@ -1793,18 +1435,6 @@ export interface LambdaDataSourceConfig {
|
|
|
1793
1435
|
*/
|
|
1794
1436
|
lambdaFunctionArn: string | undefined;
|
|
1795
1437
|
}
|
|
1796
|
-
/**
|
|
1797
|
-
* @public
|
|
1798
|
-
* @enum
|
|
1799
|
-
*/
|
|
1800
|
-
export declare const DataSourceLevelMetricsConfig: {
|
|
1801
|
-
readonly DISABLED: "DISABLED";
|
|
1802
|
-
readonly ENABLED: "ENABLED";
|
|
1803
|
-
};
|
|
1804
|
-
/**
|
|
1805
|
-
* @public
|
|
1806
|
-
*/
|
|
1807
|
-
export type DataSourceLevelMetricsConfig = (typeof DataSourceLevelMetricsConfig)[keyof typeof DataSourceLevelMetricsConfig];
|
|
1808
1438
|
/**
|
|
1809
1439
|
* <p>Describes an OpenSearch data source configuration.</p>
|
|
1810
1440
|
* @public
|
|
@@ -1853,17 +1483,6 @@ export interface RdsHttpEndpointConfig {
|
|
|
1853
1483
|
*/
|
|
1854
1484
|
awsSecretStoreArn?: string | undefined;
|
|
1855
1485
|
}
|
|
1856
|
-
/**
|
|
1857
|
-
* @public
|
|
1858
|
-
* @enum
|
|
1859
|
-
*/
|
|
1860
|
-
export declare const RelationalDatabaseSourceType: {
|
|
1861
|
-
readonly RDS_HTTP_ENDPOINT: "RDS_HTTP_ENDPOINT";
|
|
1862
|
-
};
|
|
1863
|
-
/**
|
|
1864
|
-
* @public
|
|
1865
|
-
*/
|
|
1866
|
-
export type RelationalDatabaseSourceType = (typeof RelationalDatabaseSourceType)[keyof typeof RelationalDatabaseSourceType];
|
|
1867
1486
|
/**
|
|
1868
1487
|
* <p>Describes a relational database data source configuration.</p>
|
|
1869
1488
|
* @public
|
|
@@ -1888,25 +1507,6 @@ export interface RelationalDatabaseDataSourceConfig {
|
|
|
1888
1507
|
*/
|
|
1889
1508
|
rdsHttpEndpointConfig?: RdsHttpEndpointConfig | undefined;
|
|
1890
1509
|
}
|
|
1891
|
-
/**
|
|
1892
|
-
* @public
|
|
1893
|
-
* @enum
|
|
1894
|
-
*/
|
|
1895
|
-
export declare const DataSourceType: {
|
|
1896
|
-
readonly AMAZON_BEDROCK_RUNTIME: "AMAZON_BEDROCK_RUNTIME";
|
|
1897
|
-
readonly AMAZON_DYNAMODB: "AMAZON_DYNAMODB";
|
|
1898
|
-
readonly AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH";
|
|
1899
|
-
readonly AMAZON_EVENTBRIDGE: "AMAZON_EVENTBRIDGE";
|
|
1900
|
-
readonly AMAZON_OPENSEARCH_SERVICE: "AMAZON_OPENSEARCH_SERVICE";
|
|
1901
|
-
readonly AWS_LAMBDA: "AWS_LAMBDA";
|
|
1902
|
-
readonly HTTP: "HTTP";
|
|
1903
|
-
readonly NONE: "NONE";
|
|
1904
|
-
readonly RELATIONAL_DATABASE: "RELATIONAL_DATABASE";
|
|
1905
|
-
};
|
|
1906
|
-
/**
|
|
1907
|
-
* @public
|
|
1908
|
-
*/
|
|
1909
|
-
export type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType];
|
|
1910
1510
|
/**
|
|
1911
1511
|
* @public
|
|
1912
1512
|
*/
|
|
@@ -2205,32 +1805,6 @@ export interface CreateDomainNameResponse {
|
|
|
2205
1805
|
*/
|
|
2206
1806
|
domainNameConfig?: DomainNameConfig | undefined;
|
|
2207
1807
|
}
|
|
2208
|
-
/**
|
|
2209
|
-
* @public
|
|
2210
|
-
* @enum
|
|
2211
|
-
*/
|
|
2212
|
-
export declare const ConflictDetectionType: {
|
|
2213
|
-
readonly NONE: "NONE";
|
|
2214
|
-
readonly VERSION: "VERSION";
|
|
2215
|
-
};
|
|
2216
|
-
/**
|
|
2217
|
-
* @public
|
|
2218
|
-
*/
|
|
2219
|
-
export type ConflictDetectionType = (typeof ConflictDetectionType)[keyof typeof ConflictDetectionType];
|
|
2220
|
-
/**
|
|
2221
|
-
* @public
|
|
2222
|
-
* @enum
|
|
2223
|
-
*/
|
|
2224
|
-
export declare const ConflictHandlerType: {
|
|
2225
|
-
readonly AUTOMERGE: "AUTOMERGE";
|
|
2226
|
-
readonly LAMBDA: "LAMBDA";
|
|
2227
|
-
readonly NONE: "NONE";
|
|
2228
|
-
readonly OPTIMISTIC_CONCURRENCY: "OPTIMISTIC_CONCURRENCY";
|
|
2229
|
-
};
|
|
2230
|
-
/**
|
|
2231
|
-
* @public
|
|
2232
|
-
*/
|
|
2233
|
-
export type ConflictHandlerType = (typeof ConflictHandlerType)[keyof typeof ConflictHandlerType];
|
|
2234
1808
|
/**
|
|
2235
1809
|
* <p>The <code>LambdaConflictHandlerConfig</code> object when configuring <code>LAMBDA</code>
|
|
2236
1810
|
* as the Conflict Handler.</p>
|
|
@@ -2451,54 +2025,6 @@ export interface CreateFunctionResponse {
|
|
|
2451
2025
|
*/
|
|
2452
2026
|
functionConfiguration?: FunctionConfiguration | undefined;
|
|
2453
2027
|
}
|
|
2454
|
-
/**
|
|
2455
|
-
* @public
|
|
2456
|
-
* @enum
|
|
2457
|
-
*/
|
|
2458
|
-
export declare const GraphQLApiType: {
|
|
2459
|
-
readonly GRAPHQL: "GRAPHQL";
|
|
2460
|
-
readonly MERGED: "MERGED";
|
|
2461
|
-
};
|
|
2462
|
-
/**
|
|
2463
|
-
* @public
|
|
2464
|
-
*/
|
|
2465
|
-
export type GraphQLApiType = (typeof GraphQLApiType)[keyof typeof GraphQLApiType];
|
|
2466
|
-
/**
|
|
2467
|
-
* @public
|
|
2468
|
-
* @enum
|
|
2469
|
-
*/
|
|
2470
|
-
export declare const DataSourceLevelMetricsBehavior: {
|
|
2471
|
-
readonly FULL_REQUEST_DATA_SOURCE_METRICS: "FULL_REQUEST_DATA_SOURCE_METRICS";
|
|
2472
|
-
readonly PER_DATA_SOURCE_METRICS: "PER_DATA_SOURCE_METRICS";
|
|
2473
|
-
};
|
|
2474
|
-
/**
|
|
2475
|
-
* @public
|
|
2476
|
-
*/
|
|
2477
|
-
export type DataSourceLevelMetricsBehavior = (typeof DataSourceLevelMetricsBehavior)[keyof typeof DataSourceLevelMetricsBehavior];
|
|
2478
|
-
/**
|
|
2479
|
-
* @public
|
|
2480
|
-
* @enum
|
|
2481
|
-
*/
|
|
2482
|
-
export declare const OperationLevelMetricsConfig: {
|
|
2483
|
-
readonly DISABLED: "DISABLED";
|
|
2484
|
-
readonly ENABLED: "ENABLED";
|
|
2485
|
-
};
|
|
2486
|
-
/**
|
|
2487
|
-
* @public
|
|
2488
|
-
*/
|
|
2489
|
-
export type OperationLevelMetricsConfig = (typeof OperationLevelMetricsConfig)[keyof typeof OperationLevelMetricsConfig];
|
|
2490
|
-
/**
|
|
2491
|
-
* @public
|
|
2492
|
-
* @enum
|
|
2493
|
-
*/
|
|
2494
|
-
export declare const ResolverLevelMetricsBehavior: {
|
|
2495
|
-
readonly FULL_REQUEST_RESOLVER_METRICS: "FULL_REQUEST_RESOLVER_METRICS";
|
|
2496
|
-
readonly PER_RESOLVER_METRICS: "PER_RESOLVER_METRICS";
|
|
2497
|
-
};
|
|
2498
|
-
/**
|
|
2499
|
-
* @public
|
|
2500
|
-
*/
|
|
2501
|
-
export type ResolverLevelMetricsBehavior = (typeof ResolverLevelMetricsBehavior)[keyof typeof ResolverLevelMetricsBehavior];
|
|
2502
2028
|
/**
|
|
2503
2029
|
* <p>Enables and controls the enhanced metrics feature. Enhanced metrics emit granular data
|
|
2504
2030
|
* on API usage and performance such as AppSync request and error counts, latency, and cache
|
|
@@ -2696,33 +2222,6 @@ export interface EnhancedMetricsConfig {
|
|
|
2696
2222
|
*/
|
|
2697
2223
|
operationLevelMetricsConfig: OperationLevelMetricsConfig | undefined;
|
|
2698
2224
|
}
|
|
2699
|
-
/**
|
|
2700
|
-
* @public
|
|
2701
|
-
* @enum
|
|
2702
|
-
*/
|
|
2703
|
-
export declare const GraphQLApiIntrospectionConfig: {
|
|
2704
|
-
readonly DISABLED: "DISABLED";
|
|
2705
|
-
readonly ENABLED: "ENABLED";
|
|
2706
|
-
};
|
|
2707
|
-
/**
|
|
2708
|
-
* @public
|
|
2709
|
-
*/
|
|
2710
|
-
export type GraphQLApiIntrospectionConfig = (typeof GraphQLApiIntrospectionConfig)[keyof typeof GraphQLApiIntrospectionConfig];
|
|
2711
|
-
/**
|
|
2712
|
-
* @public
|
|
2713
|
-
* @enum
|
|
2714
|
-
*/
|
|
2715
|
-
export declare const FieldLogLevel: {
|
|
2716
|
-
readonly ALL: "ALL";
|
|
2717
|
-
readonly DEBUG: "DEBUG";
|
|
2718
|
-
readonly ERROR: "ERROR";
|
|
2719
|
-
readonly INFO: "INFO";
|
|
2720
|
-
readonly NONE: "NONE";
|
|
2721
|
-
};
|
|
2722
|
-
/**
|
|
2723
|
-
* @public
|
|
2724
|
-
*/
|
|
2725
|
-
export type FieldLogLevel = (typeof FieldLogLevel)[keyof typeof FieldLogLevel];
|
|
2726
2225
|
/**
|
|
2727
2226
|
* <p>The Amazon CloudWatch Logs configuration.</p>
|
|
2728
2227
|
* @public
|
|
@@ -2784,18 +2283,6 @@ export interface LogConfig {
|
|
|
2784
2283
|
*/
|
|
2785
2284
|
excludeVerboseContent?: boolean | undefined;
|
|
2786
2285
|
}
|
|
2787
|
-
/**
|
|
2788
|
-
* @public
|
|
2789
|
-
* @enum
|
|
2790
|
-
*/
|
|
2791
|
-
export declare const DefaultAction: {
|
|
2792
|
-
readonly ALLOW: "ALLOW";
|
|
2793
|
-
readonly DENY: "DENY";
|
|
2794
|
-
};
|
|
2795
|
-
/**
|
|
2796
|
-
* @public
|
|
2797
|
-
*/
|
|
2798
|
-
export type DefaultAction = (typeof DefaultAction)[keyof typeof DefaultAction];
|
|
2799
2286
|
/**
|
|
2800
2287
|
* <p>Describes an Amazon Cognito user pool configuration.</p>
|
|
2801
2288
|
* @public
|
|
@@ -2824,18 +2311,6 @@ export interface UserPoolConfig {
|
|
|
2824
2311
|
*/
|
|
2825
2312
|
appIdClientRegex?: string | undefined;
|
|
2826
2313
|
}
|
|
2827
|
-
/**
|
|
2828
|
-
* @public
|
|
2829
|
-
* @enum
|
|
2830
|
-
*/
|
|
2831
|
-
export declare const GraphQLApiVisibility: {
|
|
2832
|
-
readonly GLOBAL: "GLOBAL";
|
|
2833
|
-
readonly PRIVATE: "PRIVATE";
|
|
2834
|
-
};
|
|
2835
|
-
/**
|
|
2836
|
-
* @public
|
|
2837
|
-
*/
|
|
2838
|
-
export type GraphQLApiVisibility = (typeof GraphQLApiVisibility)[keyof typeof GraphQLApiVisibility];
|
|
2839
2314
|
/**
|
|
2840
2315
|
* @public
|
|
2841
2316
|
*/
|
|
@@ -3128,30 +2603,6 @@ export interface CachingConfig {
|
|
|
3128
2603
|
*/
|
|
3129
2604
|
cachingKeys?: string[] | undefined;
|
|
3130
2605
|
}
|
|
3131
|
-
/**
|
|
3132
|
-
* @public
|
|
3133
|
-
* @enum
|
|
3134
|
-
*/
|
|
3135
|
-
export declare const ResolverKind: {
|
|
3136
|
-
readonly PIPELINE: "PIPELINE";
|
|
3137
|
-
readonly UNIT: "UNIT";
|
|
3138
|
-
};
|
|
3139
|
-
/**
|
|
3140
|
-
* @public
|
|
3141
|
-
*/
|
|
3142
|
-
export type ResolverKind = (typeof ResolverKind)[keyof typeof ResolverKind];
|
|
3143
|
-
/**
|
|
3144
|
-
* @public
|
|
3145
|
-
* @enum
|
|
3146
|
-
*/
|
|
3147
|
-
export declare const ResolverLevelMetricsConfig: {
|
|
3148
|
-
readonly DISABLED: "DISABLED";
|
|
3149
|
-
readonly ENABLED: "ENABLED";
|
|
3150
|
-
};
|
|
3151
|
-
/**
|
|
3152
|
-
* @public
|
|
3153
|
-
*/
|
|
3154
|
-
export type ResolverLevelMetricsConfig = (typeof ResolverLevelMetricsConfig)[keyof typeof ResolverLevelMetricsConfig];
|
|
3155
2606
|
/**
|
|
3156
2607
|
* <p>The pipeline configuration for a resolver of kind <code>PIPELINE</code>.</p>
|
|
3157
2608
|
* @public
|
|
@@ -3380,18 +2831,6 @@ export interface CreateResolverResponse {
|
|
|
3380
2831
|
*/
|
|
3381
2832
|
resolver?: Resolver | undefined;
|
|
3382
2833
|
}
|
|
3383
|
-
/**
|
|
3384
|
-
* @public
|
|
3385
|
-
* @enum
|
|
3386
|
-
*/
|
|
3387
|
-
export declare const TypeDefinitionFormat: {
|
|
3388
|
-
readonly JSON: "JSON";
|
|
3389
|
-
readonly SDL: "SDL";
|
|
3390
|
-
};
|
|
3391
|
-
/**
|
|
3392
|
-
* @public
|
|
3393
|
-
*/
|
|
3394
|
-
export type TypeDefinitionFormat = (typeof TypeDefinitionFormat)[keyof typeof TypeDefinitionFormat];
|
|
3395
2834
|
/**
|
|
3396
2835
|
* @public
|
|
3397
2836
|
*/
|
|
@@ -4027,19 +3466,6 @@ export interface DataSourceIntrospectionModelIndex {
|
|
|
4027
3466
|
*/
|
|
4028
3467
|
fields?: string[] | undefined;
|
|
4029
3468
|
}
|
|
4030
|
-
/**
|
|
4031
|
-
* @public
|
|
4032
|
-
* @enum
|
|
4033
|
-
*/
|
|
4034
|
-
export declare const DataSourceIntrospectionStatus: {
|
|
4035
|
-
readonly FAILED: "FAILED";
|
|
4036
|
-
readonly PROCESSING: "PROCESSING";
|
|
4037
|
-
readonly SUCCESS: "SUCCESS";
|
|
4038
|
-
};
|
|
4039
|
-
/**
|
|
4040
|
-
* @public
|
|
4041
|
-
*/
|
|
4042
|
-
export type DataSourceIntrospectionStatus = (typeof DataSourceIntrospectionStatus)[keyof typeof DataSourceIntrospectionStatus];
|
|
4043
3469
|
/**
|
|
4044
3470
|
* @public
|
|
4045
3471
|
*/
|
|
@@ -4126,18 +3552,6 @@ export interface GetGraphqlApiEnvironmentVariablesResponse {
|
|
|
4126
3552
|
*/
|
|
4127
3553
|
environmentVariables?: Record<string, string> | undefined;
|
|
4128
3554
|
}
|
|
4129
|
-
/**
|
|
4130
|
-
* @public
|
|
4131
|
-
* @enum
|
|
4132
|
-
*/
|
|
4133
|
-
export declare const OutputType: {
|
|
4134
|
-
readonly JSON: "JSON";
|
|
4135
|
-
readonly SDL: "SDL";
|
|
4136
|
-
};
|
|
4137
|
-
/**
|
|
4138
|
-
* @public
|
|
4139
|
-
*/
|
|
4140
|
-
export type OutputType = (typeof OutputType)[keyof typeof OutputType];
|
|
4141
3555
|
/**
|
|
4142
3556
|
* @public
|
|
4143
3557
|
*/
|
|
@@ -4170,18 +3584,6 @@ export interface GetIntrospectionSchemaResponse {
|
|
|
4170
3584
|
*/
|
|
4171
3585
|
schema?: Uint8Array | undefined;
|
|
4172
3586
|
}
|
|
4173
|
-
/**
|
|
4174
|
-
* <p>The GraphQL schema is not valid.</p>
|
|
4175
|
-
* @public
|
|
4176
|
-
*/
|
|
4177
|
-
export declare class GraphQLSchemaException extends __BaseException {
|
|
4178
|
-
readonly name: "GraphQLSchemaException";
|
|
4179
|
-
readonly $fault: "client";
|
|
4180
|
-
/**
|
|
4181
|
-
* @internal
|
|
4182
|
-
*/
|
|
4183
|
-
constructor(opts: __ExceptionOptionType<GraphQLSchemaException, __BaseException>);
|
|
4184
|
-
}
|
|
4185
3587
|
/**
|
|
4186
3588
|
* @public
|
|
4187
3589
|
*/
|
|
@@ -4222,22 +3624,6 @@ export interface GetSchemaCreationStatusRequest {
|
|
|
4222
3624
|
*/
|
|
4223
3625
|
apiId: string | undefined;
|
|
4224
3626
|
}
|
|
4225
|
-
/**
|
|
4226
|
-
* @public
|
|
4227
|
-
* @enum
|
|
4228
|
-
*/
|
|
4229
|
-
export declare const SchemaStatus: {
|
|
4230
|
-
readonly Active: "ACTIVE";
|
|
4231
|
-
readonly Deleting: "DELETING";
|
|
4232
|
-
readonly Failed: "FAILED";
|
|
4233
|
-
readonly NotApplicable: "NOT_APPLICABLE";
|
|
4234
|
-
readonly Processing: "PROCESSING";
|
|
4235
|
-
readonly Success: "SUCCESS";
|
|
4236
|
-
};
|
|
4237
|
-
/**
|
|
4238
|
-
* @public
|
|
4239
|
-
*/
|
|
4240
|
-
export type SchemaStatus = (typeof SchemaStatus)[keyof typeof SchemaStatus];
|
|
4241
3627
|
/**
|
|
4242
3628
|
* @public
|
|
4243
3629
|
*/
|
|
@@ -4524,18 +3910,6 @@ export interface ListFunctionsResponse {
|
|
|
4524
3910
|
*/
|
|
4525
3911
|
nextToken?: string | undefined;
|
|
4526
3912
|
}
|
|
4527
|
-
/**
|
|
4528
|
-
* @public
|
|
4529
|
-
* @enum
|
|
4530
|
-
*/
|
|
4531
|
-
export declare const Ownership: {
|
|
4532
|
-
readonly CURRENT_ACCOUNT: "CURRENT_ACCOUNT";
|
|
4533
|
-
readonly OTHER_ACCOUNTS: "OTHER_ACCOUNTS";
|
|
4534
|
-
};
|
|
4535
|
-
/**
|
|
4536
|
-
* @public
|
|
4537
|
-
*/
|
|
4538
|
-
export type Ownership = (typeof Ownership)[keyof typeof Ownership];
|
|
4539
3913
|
/**
|
|
4540
3914
|
* @public
|
|
4541
3915
|
*/
|