@aws-sdk/client-appsync 3.934.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
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import { AppSyncServiceException as __BaseException } from "./AppSyncServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ApiKeyLimitExceededException extends __BaseException {
|
|
15
|
+
name = "ApiKeyLimitExceededException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ApiKeyLimitExceededException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, ApiKeyLimitExceededException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ApiKeyValidityOutOfBoundsException extends __BaseException {
|
|
27
|
+
name = "ApiKeyValidityOutOfBoundsException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ApiKeyValidityOutOfBoundsException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ApiKeyValidityOutOfBoundsException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ApiLimitExceededException extends __BaseException {
|
|
39
|
+
name = "ApiLimitExceededException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ApiLimitExceededException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ApiLimitExceededException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class BadRequestException extends __BaseException {
|
|
51
|
+
name = "BadRequestException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
reason;
|
|
54
|
+
detail;
|
|
55
|
+
constructor(opts) {
|
|
56
|
+
super({
|
|
57
|
+
name: "BadRequestException",
|
|
58
|
+
$fault: "client",
|
|
59
|
+
...opts,
|
|
60
|
+
});
|
|
61
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
62
|
+
this.reason = opts.reason;
|
|
63
|
+
this.detail = opts.detail;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
export class InternalFailureException extends __BaseException {
|
|
67
|
+
name = "InternalFailureException";
|
|
68
|
+
$fault = "server";
|
|
69
|
+
constructor(opts) {
|
|
70
|
+
super({
|
|
71
|
+
name: "InternalFailureException",
|
|
72
|
+
$fault: "server",
|
|
73
|
+
...opts,
|
|
74
|
+
});
|
|
75
|
+
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
export class NotFoundException extends __BaseException {
|
|
79
|
+
name = "NotFoundException";
|
|
80
|
+
$fault = "client";
|
|
81
|
+
constructor(opts) {
|
|
82
|
+
super({
|
|
83
|
+
name: "NotFoundException",
|
|
84
|
+
$fault: "client",
|
|
85
|
+
...opts,
|
|
86
|
+
});
|
|
87
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
export class ConcurrentModificationException extends __BaseException {
|
|
91
|
+
name = "ConcurrentModificationException";
|
|
92
|
+
$fault = "client";
|
|
93
|
+
constructor(opts) {
|
|
94
|
+
super({
|
|
95
|
+
name: "ConcurrentModificationException",
|
|
96
|
+
$fault: "client",
|
|
97
|
+
...opts,
|
|
98
|
+
});
|
|
99
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
export class LimitExceededException extends __BaseException {
|
|
103
|
+
name = "LimitExceededException";
|
|
104
|
+
$fault = "client";
|
|
105
|
+
constructor(opts) {
|
|
106
|
+
super({
|
|
107
|
+
name: "LimitExceededException",
|
|
108
|
+
$fault: "client",
|
|
109
|
+
...opts,
|
|
110
|
+
});
|
|
111
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
export class UnauthorizedException extends __BaseException {
|
|
115
|
+
name = "UnauthorizedException";
|
|
116
|
+
$fault = "client";
|
|
117
|
+
constructor(opts) {
|
|
118
|
+
super({
|
|
119
|
+
name: "UnauthorizedException",
|
|
120
|
+
$fault: "client",
|
|
121
|
+
...opts,
|
|
122
|
+
});
|
|
123
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
127
|
+
name = "ServiceQuotaExceededException";
|
|
128
|
+
$fault = "client";
|
|
129
|
+
constructor(opts) {
|
|
130
|
+
super({
|
|
131
|
+
name: "ServiceQuotaExceededException",
|
|
132
|
+
$fault: "client",
|
|
133
|
+
...opts,
|
|
134
|
+
});
|
|
135
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
export class ConflictException extends __BaseException {
|
|
139
|
+
name = "ConflictException";
|
|
140
|
+
$fault = "client";
|
|
141
|
+
constructor(opts) {
|
|
142
|
+
super({
|
|
143
|
+
name: "ConflictException",
|
|
144
|
+
$fault: "client",
|
|
145
|
+
...opts,
|
|
146
|
+
});
|
|
147
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
export class GraphQLSchemaException extends __BaseException {
|
|
151
|
+
name = "GraphQLSchemaException";
|
|
152
|
+
$fault = "client";
|
|
153
|
+
constructor(opts) {
|
|
154
|
+
super({
|
|
155
|
+
name: "GraphQLSchemaException",
|
|
156
|
+
$fault: "client",
|
|
157
|
+
...opts,
|
|
158
|
+
});
|
|
159
|
+
Object.setPrototypeOf(this, GraphQLSchemaException.prototype);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
@@ -1,340 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export const AuthenticationType = {
|
|
15
|
-
AMAZON_COGNITO_USER_POOLS: "AMAZON_COGNITO_USER_POOLS",
|
|
16
|
-
API_KEY: "API_KEY",
|
|
17
|
-
AWS_IAM: "AWS_IAM",
|
|
18
|
-
AWS_LAMBDA: "AWS_LAMBDA",
|
|
19
|
-
OPENID_CONNECT: "OPENID_CONNECT",
|
|
20
|
-
};
|
|
21
|
-
export const EventLogLevel = {
|
|
22
|
-
ALL: "ALL",
|
|
23
|
-
DEBUG: "DEBUG",
|
|
24
|
-
ERROR: "ERROR",
|
|
25
|
-
INFO: "INFO",
|
|
26
|
-
NONE: "NONE",
|
|
27
|
-
};
|
|
28
|
-
export const AssociationStatus = {
|
|
29
|
-
Failed: "FAILED",
|
|
30
|
-
Processing: "PROCESSING",
|
|
31
|
-
Success: "SUCCESS",
|
|
32
|
-
};
|
|
33
|
-
export const ApiCachingBehavior = {
|
|
34
|
-
FULL_REQUEST_CACHING: "FULL_REQUEST_CACHING",
|
|
35
|
-
OPERATION_LEVEL_CACHING: "OPERATION_LEVEL_CACHING",
|
|
36
|
-
PER_RESOLVER_CACHING: "PER_RESOLVER_CACHING",
|
|
37
|
-
};
|
|
38
|
-
export const CacheHealthMetricsConfig = {
|
|
39
|
-
DISABLED: "DISABLED",
|
|
40
|
-
ENABLED: "ENABLED",
|
|
41
|
-
};
|
|
42
|
-
export const ApiCacheStatus = {
|
|
43
|
-
AVAILABLE: "AVAILABLE",
|
|
44
|
-
CREATING: "CREATING",
|
|
45
|
-
DELETING: "DELETING",
|
|
46
|
-
FAILED: "FAILED",
|
|
47
|
-
MODIFYING: "MODIFYING",
|
|
48
|
-
};
|
|
49
|
-
export const ApiCacheType = {
|
|
50
|
-
LARGE: "LARGE",
|
|
51
|
-
LARGE_12X: "LARGE_12X",
|
|
52
|
-
LARGE_2X: "LARGE_2X",
|
|
53
|
-
LARGE_4X: "LARGE_4X",
|
|
54
|
-
LARGE_8X: "LARGE_8X",
|
|
55
|
-
MEDIUM: "MEDIUM",
|
|
56
|
-
R4_2XLARGE: "R4_2XLARGE",
|
|
57
|
-
R4_4XLARGE: "R4_4XLARGE",
|
|
58
|
-
R4_8XLARGE: "R4_8XLARGE",
|
|
59
|
-
R4_LARGE: "R4_LARGE",
|
|
60
|
-
R4_XLARGE: "R4_XLARGE",
|
|
61
|
-
SMALL: "SMALL",
|
|
62
|
-
T2_MEDIUM: "T2_MEDIUM",
|
|
63
|
-
T2_SMALL: "T2_SMALL",
|
|
64
|
-
XLARGE: "XLARGE",
|
|
65
|
-
};
|
|
66
|
-
export class ApiKeyLimitExceededException extends __BaseException {
|
|
67
|
-
name = "ApiKeyLimitExceededException";
|
|
68
|
-
$fault = "client";
|
|
69
|
-
constructor(opts) {
|
|
70
|
-
super({
|
|
71
|
-
name: "ApiKeyLimitExceededException",
|
|
72
|
-
$fault: "client",
|
|
73
|
-
...opts,
|
|
74
|
-
});
|
|
75
|
-
Object.setPrototypeOf(this, ApiKeyLimitExceededException.prototype);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
export class ApiKeyValidityOutOfBoundsException extends __BaseException {
|
|
79
|
-
name = "ApiKeyValidityOutOfBoundsException";
|
|
80
|
-
$fault = "client";
|
|
81
|
-
constructor(opts) {
|
|
82
|
-
super({
|
|
83
|
-
name: "ApiKeyValidityOutOfBoundsException",
|
|
84
|
-
$fault: "client",
|
|
85
|
-
...opts,
|
|
86
|
-
});
|
|
87
|
-
Object.setPrototypeOf(this, ApiKeyValidityOutOfBoundsException.prototype);
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
export class ApiLimitExceededException extends __BaseException {
|
|
91
|
-
name = "ApiLimitExceededException";
|
|
92
|
-
$fault = "client";
|
|
93
|
-
constructor(opts) {
|
|
94
|
-
super({
|
|
95
|
-
name: "ApiLimitExceededException",
|
|
96
|
-
$fault: "client",
|
|
97
|
-
...opts,
|
|
98
|
-
});
|
|
99
|
-
Object.setPrototypeOf(this, ApiLimitExceededException.prototype);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
export const RuntimeName = {
|
|
103
|
-
APPSYNC_JS: "APPSYNC_JS",
|
|
104
|
-
};
|
|
105
|
-
export const BadRequestReason = {
|
|
106
|
-
CODE_ERROR: "CODE_ERROR",
|
|
107
|
-
};
|
|
108
|
-
export class BadRequestException extends __BaseException {
|
|
109
|
-
name = "BadRequestException";
|
|
110
|
-
$fault = "client";
|
|
111
|
-
reason;
|
|
112
|
-
detail;
|
|
113
|
-
constructor(opts) {
|
|
114
|
-
super({
|
|
115
|
-
name: "BadRequestException",
|
|
116
|
-
$fault: "client",
|
|
117
|
-
...opts,
|
|
118
|
-
});
|
|
119
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
120
|
-
this.reason = opts.reason;
|
|
121
|
-
this.detail = opts.detail;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
export class InternalFailureException extends __BaseException {
|
|
125
|
-
name = "InternalFailureException";
|
|
126
|
-
$fault = "server";
|
|
127
|
-
constructor(opts) {
|
|
128
|
-
super({
|
|
129
|
-
name: "InternalFailureException",
|
|
130
|
-
$fault: "server",
|
|
131
|
-
...opts,
|
|
132
|
-
});
|
|
133
|
-
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
export class NotFoundException extends __BaseException {
|
|
137
|
-
name = "NotFoundException";
|
|
138
|
-
$fault = "client";
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "NotFoundException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
export const MergeType = {
|
|
149
|
-
AUTO_MERGE: "AUTO_MERGE",
|
|
150
|
-
MANUAL_MERGE: "MANUAL_MERGE",
|
|
151
|
-
};
|
|
152
|
-
export const SourceApiAssociationStatus = {
|
|
153
|
-
AUTO_MERGE_SCHEDULE_FAILED: "AUTO_MERGE_SCHEDULE_FAILED",
|
|
154
|
-
DELETION_FAILED: "DELETION_FAILED",
|
|
155
|
-
DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS",
|
|
156
|
-
DELETION_SCHEDULED: "DELETION_SCHEDULED",
|
|
157
|
-
MERGE_FAILED: "MERGE_FAILED",
|
|
158
|
-
MERGE_IN_PROGRESS: "MERGE_IN_PROGRESS",
|
|
159
|
-
MERGE_SCHEDULED: "MERGE_SCHEDULED",
|
|
160
|
-
MERGE_SUCCESS: "MERGE_SUCCESS",
|
|
161
|
-
};
|
|
162
|
-
export class ConcurrentModificationException extends __BaseException {
|
|
163
|
-
name = "ConcurrentModificationException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
constructor(opts) {
|
|
166
|
-
super({
|
|
167
|
-
name: "ConcurrentModificationException",
|
|
168
|
-
$fault: "client",
|
|
169
|
-
...opts,
|
|
170
|
-
});
|
|
171
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
export class LimitExceededException extends __BaseException {
|
|
175
|
-
name = "LimitExceededException";
|
|
176
|
-
$fault = "client";
|
|
177
|
-
constructor(opts) {
|
|
178
|
-
super({
|
|
179
|
-
name: "LimitExceededException",
|
|
180
|
-
$fault: "client",
|
|
181
|
-
...opts,
|
|
182
|
-
});
|
|
183
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
export class UnauthorizedException extends __BaseException {
|
|
187
|
-
name = "UnauthorizedException";
|
|
188
|
-
$fault = "client";
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "UnauthorizedException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
export const AuthorizationType = {
|
|
199
|
-
AWS_IAM: "AWS_IAM",
|
|
200
|
-
};
|
|
201
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
202
|
-
name = "ServiceQuotaExceededException";
|
|
203
|
-
$fault = "client";
|
|
204
|
-
constructor(opts) {
|
|
205
|
-
super({
|
|
206
|
-
name: "ServiceQuotaExceededException",
|
|
207
|
-
$fault: "client",
|
|
208
|
-
...opts,
|
|
209
|
-
});
|
|
210
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
export class ConflictException extends __BaseException {
|
|
214
|
-
name = "ConflictException";
|
|
215
|
-
$fault = "client";
|
|
216
|
-
constructor(opts) {
|
|
217
|
-
super({
|
|
218
|
-
name: "ConflictException",
|
|
219
|
-
$fault: "client",
|
|
220
|
-
...opts,
|
|
221
|
-
});
|
|
222
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
export const HandlerBehavior = {
|
|
226
|
-
CODE: "CODE",
|
|
227
|
-
DIRECT: "DIRECT",
|
|
228
|
-
};
|
|
229
|
-
export const InvokeType = {
|
|
230
|
-
EVENT: "EVENT",
|
|
231
|
-
REQUEST_RESPONSE: "REQUEST_RESPONSE",
|
|
232
|
-
};
|
|
233
|
-
export const DataSourceLevelMetricsConfig = {
|
|
234
|
-
DISABLED: "DISABLED",
|
|
235
|
-
ENABLED: "ENABLED",
|
|
236
|
-
};
|
|
237
|
-
export const RelationalDatabaseSourceType = {
|
|
238
|
-
RDS_HTTP_ENDPOINT: "RDS_HTTP_ENDPOINT",
|
|
239
|
-
};
|
|
240
|
-
export const DataSourceType = {
|
|
241
|
-
AMAZON_BEDROCK_RUNTIME: "AMAZON_BEDROCK_RUNTIME",
|
|
242
|
-
AMAZON_DYNAMODB: "AMAZON_DYNAMODB",
|
|
243
|
-
AMAZON_ELASTICSEARCH: "AMAZON_ELASTICSEARCH",
|
|
244
|
-
AMAZON_EVENTBRIDGE: "AMAZON_EVENTBRIDGE",
|
|
245
|
-
AMAZON_OPENSEARCH_SERVICE: "AMAZON_OPENSEARCH_SERVICE",
|
|
246
|
-
AWS_LAMBDA: "AWS_LAMBDA",
|
|
247
|
-
HTTP: "HTTP",
|
|
248
|
-
NONE: "NONE",
|
|
249
|
-
RELATIONAL_DATABASE: "RELATIONAL_DATABASE",
|
|
250
|
-
};
|
|
251
|
-
export const ConflictDetectionType = {
|
|
252
|
-
NONE: "NONE",
|
|
253
|
-
VERSION: "VERSION",
|
|
254
|
-
};
|
|
255
|
-
export const ConflictHandlerType = {
|
|
256
|
-
AUTOMERGE: "AUTOMERGE",
|
|
257
|
-
LAMBDA: "LAMBDA",
|
|
258
|
-
NONE: "NONE",
|
|
259
|
-
OPTIMISTIC_CONCURRENCY: "OPTIMISTIC_CONCURRENCY",
|
|
260
|
-
};
|
|
261
|
-
export const GraphQLApiType = {
|
|
262
|
-
GRAPHQL: "GRAPHQL",
|
|
263
|
-
MERGED: "MERGED",
|
|
264
|
-
};
|
|
265
|
-
export const DataSourceLevelMetricsBehavior = {
|
|
266
|
-
FULL_REQUEST_DATA_SOURCE_METRICS: "FULL_REQUEST_DATA_SOURCE_METRICS",
|
|
267
|
-
PER_DATA_SOURCE_METRICS: "PER_DATA_SOURCE_METRICS",
|
|
268
|
-
};
|
|
269
|
-
export const OperationLevelMetricsConfig = {
|
|
270
|
-
DISABLED: "DISABLED",
|
|
271
|
-
ENABLED: "ENABLED",
|
|
272
|
-
};
|
|
273
|
-
export const ResolverLevelMetricsBehavior = {
|
|
274
|
-
FULL_REQUEST_RESOLVER_METRICS: "FULL_REQUEST_RESOLVER_METRICS",
|
|
275
|
-
PER_RESOLVER_METRICS: "PER_RESOLVER_METRICS",
|
|
276
|
-
};
|
|
277
|
-
export const GraphQLApiIntrospectionConfig = {
|
|
278
|
-
DISABLED: "DISABLED",
|
|
279
|
-
ENABLED: "ENABLED",
|
|
280
|
-
};
|
|
281
|
-
export const FieldLogLevel = {
|
|
282
|
-
ALL: "ALL",
|
|
283
|
-
DEBUG: "DEBUG",
|
|
284
|
-
ERROR: "ERROR",
|
|
285
|
-
INFO: "INFO",
|
|
286
|
-
NONE: "NONE",
|
|
287
|
-
};
|
|
288
|
-
export const DefaultAction = {
|
|
289
|
-
ALLOW: "ALLOW",
|
|
290
|
-
DENY: "DENY",
|
|
291
|
-
};
|
|
292
|
-
export const GraphQLApiVisibility = {
|
|
293
|
-
GLOBAL: "GLOBAL",
|
|
294
|
-
PRIVATE: "PRIVATE",
|
|
295
|
-
};
|
|
296
|
-
export const ResolverKind = {
|
|
297
|
-
PIPELINE: "PIPELINE",
|
|
298
|
-
UNIT: "UNIT",
|
|
299
|
-
};
|
|
300
|
-
export const ResolverLevelMetricsConfig = {
|
|
301
|
-
DISABLED: "DISABLED",
|
|
302
|
-
ENABLED: "ENABLED",
|
|
303
|
-
};
|
|
304
|
-
export const TypeDefinitionFormat = {
|
|
305
|
-
JSON: "JSON",
|
|
306
|
-
SDL: "SDL",
|
|
307
|
-
};
|
|
308
|
-
export const DataSourceIntrospectionStatus = {
|
|
309
|
-
FAILED: "FAILED",
|
|
310
|
-
PROCESSING: "PROCESSING",
|
|
311
|
-
SUCCESS: "SUCCESS",
|
|
312
|
-
};
|
|
313
|
-
export const OutputType = {
|
|
314
|
-
JSON: "JSON",
|
|
315
|
-
SDL: "SDL",
|
|
316
|
-
};
|
|
317
|
-
export class GraphQLSchemaException extends __BaseException {
|
|
318
|
-
name = "GraphQLSchemaException";
|
|
319
|
-
$fault = "client";
|
|
320
|
-
constructor(opts) {
|
|
321
|
-
super({
|
|
322
|
-
name: "GraphQLSchemaException",
|
|
323
|
-
$fault: "client",
|
|
324
|
-
...opts,
|
|
325
|
-
});
|
|
326
|
-
Object.setPrototypeOf(this, GraphQLSchemaException.prototype);
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
export const SchemaStatus = {
|
|
330
|
-
Active: "ACTIVE",
|
|
331
|
-
Deleting: "DELETING",
|
|
332
|
-
Failed: "FAILED",
|
|
333
|
-
NotApplicable: "NOT_APPLICABLE",
|
|
334
|
-
Processing: "PROCESSING",
|
|
335
|
-
Success: "SUCCESS",
|
|
336
|
-
};
|
|
337
|
-
export const Ownership = {
|
|
338
|
-
CURRENT_ACCOUNT: "CURRENT_ACCOUNT",
|
|
339
|
-
OTHER_ACCOUNTS: "OTHER_ACCOUNTS",
|
|
340
|
-
};
|
|
1
|
+
export {};
|
|
@@ -523,7 +523,7 @@ const _xE = "xrayEnabled";
|
|
|
523
523
|
const n0 = "com.amazonaws.appsync";
|
|
524
524
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
525
525
|
import { AppSyncServiceException as __AppSyncServiceException } from "../models/AppSyncServiceException";
|
|
526
|
-
import { AccessDeniedException as __AccessDeniedException, ApiKeyLimitExceededException as __ApiKeyLimitExceededException, ApiKeyValidityOutOfBoundsException as __ApiKeyValidityOutOfBoundsException, ApiLimitExceededException as __ApiLimitExceededException, BadRequestException as __BadRequestException, ConcurrentModificationException as __ConcurrentModificationException, ConflictException as __ConflictException, GraphQLSchemaException as __GraphQLSchemaException, InternalFailureException as __InternalFailureException, LimitExceededException as __LimitExceededException, NotFoundException as __NotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, UnauthorizedException as __UnauthorizedException, } from "../models/
|
|
526
|
+
import { AccessDeniedException as __AccessDeniedException, ApiKeyLimitExceededException as __ApiKeyLimitExceededException, ApiKeyValidityOutOfBoundsException as __ApiKeyValidityOutOfBoundsException, ApiLimitExceededException as __ApiLimitExceededException, BadRequestException as __BadRequestException, ConcurrentModificationException as __ConcurrentModificationException, ConflictException as __ConflictException, GraphQLSchemaException as __GraphQLSchemaException, InternalFailureException as __InternalFailureException, LimitExceededException as __LimitExceededException, NotFoundException as __NotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, UnauthorizedException as __UnauthorizedException, } from "../models/errors";
|
|
527
527
|
export var AccessDeniedException = [
|
|
528
528
|
-3,
|
|
529
529
|
n0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -11,5 +11,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
11
11
|
export type { AppSyncExtensionConfiguration } from "./extensionConfiguration";
|
|
12
12
|
export * from "./commands";
|
|
13
13
|
export * from "./pagination";
|
|
14
|
-
export * from "./models";
|
|
14
|
+
export * from "./models/enums";
|
|
15
|
+
export * from "./models/errors";
|
|
16
|
+
export type * from "./models/models_0";
|
|
15
17
|
export { AppSyncServiceException } from "./models/AppSyncServiceException";
|