@aws-sdk/client-wellarchitected 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.
@@ -0,0 +1,512 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const IntegrationStatusInput: {
6
+ readonly NOT_CONFIGURED: "NOT_CONFIGURED";
7
+ };
8
+ /**
9
+ * @public
10
+ */
11
+ export type IntegrationStatusInput = (typeof IntegrationStatusInput)[keyof typeof IntegrationStatusInput];
12
+ /**
13
+ * @public
14
+ * @enum
15
+ */
16
+ export declare const AccountJiraIssueManagementStatus: {
17
+ readonly DISABLED: "DISABLED";
18
+ readonly ENABLED: "ENABLED";
19
+ };
20
+ /**
21
+ * @public
22
+ */
23
+ export type AccountJiraIssueManagementStatus = (typeof AccountJiraIssueManagementStatus)[keyof typeof AccountJiraIssueManagementStatus];
24
+ /**
25
+ * @public
26
+ * @enum
27
+ */
28
+ export declare const IssueManagementType: {
29
+ readonly AUTO: "AUTO";
30
+ readonly MANUAL: "MANUAL";
31
+ };
32
+ /**
33
+ * @public
34
+ */
35
+ export type IssueManagementType = (typeof IssueManagementType)[keyof typeof IssueManagementType];
36
+ /**
37
+ * @public
38
+ * @enum
39
+ */
40
+ export declare const IntegrationStatus: {
41
+ readonly CONFIGURED: "CONFIGURED";
42
+ readonly NOT_CONFIGURED: "NOT_CONFIGURED";
43
+ };
44
+ /**
45
+ * @public
46
+ */
47
+ export type IntegrationStatus = (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
48
+ /**
49
+ * @public
50
+ * @enum
51
+ */
52
+ export declare const CheckStatus: {
53
+ readonly ERROR: "ERROR";
54
+ readonly FETCH_FAILED: "FETCH_FAILED";
55
+ readonly NOT_AVAILABLE: "NOT_AVAILABLE";
56
+ readonly OKAY: "OKAY";
57
+ readonly WARNING: "WARNING";
58
+ };
59
+ /**
60
+ * @public
61
+ */
62
+ export type CheckStatus = (typeof CheckStatus)[keyof typeof CheckStatus];
63
+ /**
64
+ * @public
65
+ * @enum
66
+ */
67
+ export declare const AdditionalResourceType: {
68
+ readonly HELPFUL_RESOURCE: "HELPFUL_RESOURCE";
69
+ readonly IMPROVEMENT_PLAN: "IMPROVEMENT_PLAN";
70
+ };
71
+ /**
72
+ * @public
73
+ */
74
+ export type AdditionalResourceType = (typeof AdditionalResourceType)[keyof typeof AdditionalResourceType];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const ChoiceReason: {
80
+ readonly ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS";
81
+ readonly BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES";
82
+ readonly NONE: "NONE";
83
+ readonly OTHER: "OTHER";
84
+ readonly OUT_OF_SCOPE: "OUT_OF_SCOPE";
85
+ };
86
+ /**
87
+ * @public
88
+ */
89
+ export type ChoiceReason = (typeof ChoiceReason)[keyof typeof ChoiceReason];
90
+ /**
91
+ * @public
92
+ * @enum
93
+ */
94
+ export declare const ChoiceStatus: {
95
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
96
+ readonly SELECTED: "SELECTED";
97
+ readonly UNSELECTED: "UNSELECTED";
98
+ };
99
+ /**
100
+ * @public
101
+ */
102
+ export type ChoiceStatus = (typeof ChoiceStatus)[keyof typeof ChoiceStatus];
103
+ /**
104
+ * @public
105
+ * @enum
106
+ */
107
+ export declare const AnswerReason: {
108
+ readonly ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS";
109
+ readonly BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES";
110
+ readonly NONE: "NONE";
111
+ readonly OTHER: "OTHER";
112
+ readonly OUT_OF_SCOPE: "OUT_OF_SCOPE";
113
+ };
114
+ /**
115
+ * @public
116
+ */
117
+ export type AnswerReason = (typeof AnswerReason)[keyof typeof AnswerReason];
118
+ /**
119
+ * @public
120
+ * @enum
121
+ */
122
+ export declare const Risk: {
123
+ readonly HIGH: "HIGH";
124
+ readonly MEDIUM: "MEDIUM";
125
+ readonly NONE: "NONE";
126
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
127
+ readonly UNANSWERED: "UNANSWERED";
128
+ };
129
+ /**
130
+ * @public
131
+ */
132
+ export type Risk = (typeof Risk)[keyof typeof Risk];
133
+ /**
134
+ * @public
135
+ * @enum
136
+ */
137
+ export declare const QuestionType: {
138
+ readonly NON_PRIORITIZED: "NON_PRIORITIZED";
139
+ readonly PRIORITIZED: "PRIORITIZED";
140
+ };
141
+ /**
142
+ * @public
143
+ */
144
+ export type QuestionType = (typeof QuestionType)[keyof typeof QuestionType];
145
+ /**
146
+ * @public
147
+ * @enum
148
+ */
149
+ export declare const ValidationExceptionReason: {
150
+ readonly CANNOT_PARSE: "CANNOT_PARSE";
151
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
152
+ readonly OTHER: "OTHER";
153
+ readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
154
+ };
155
+ /**
156
+ * @public
157
+ */
158
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
159
+ /**
160
+ * @public
161
+ * @enum
162
+ */
163
+ export declare const CheckProvider: {
164
+ readonly TRUSTED_ADVISOR: "TRUSTED_ADVISOR";
165
+ };
166
+ /**
167
+ * @public
168
+ */
169
+ export type CheckProvider = (typeof CheckProvider)[keyof typeof CheckProvider];
170
+ /**
171
+ * @public
172
+ * @enum
173
+ */
174
+ export declare const CheckFailureReason: {
175
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
176
+ readonly ASSUME_ROLE_ERROR: "ASSUME_ROLE_ERROR";
177
+ readonly PREMIUM_SUPPORT_REQUIRED: "PREMIUM_SUPPORT_REQUIRED";
178
+ readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
179
+ };
180
+ /**
181
+ * @public
182
+ */
183
+ export type CheckFailureReason = (typeof CheckFailureReason)[keyof typeof CheckFailureReason];
184
+ /**
185
+ * @public
186
+ * @enum
187
+ */
188
+ export declare const MetricType: {
189
+ readonly WORKLOAD: "WORKLOAD";
190
+ };
191
+ /**
192
+ * @public
193
+ */
194
+ export type MetricType = (typeof MetricType)[keyof typeof MetricType];
195
+ /**
196
+ * @public
197
+ * @enum
198
+ */
199
+ export declare const TrustedAdvisorIntegrationStatus: {
200
+ readonly DISABLED: "DISABLED";
201
+ readonly ENABLED: "ENABLED";
202
+ };
203
+ /**
204
+ * @public
205
+ */
206
+ export type TrustedAdvisorIntegrationStatus = (typeof TrustedAdvisorIntegrationStatus)[keyof typeof TrustedAdvisorIntegrationStatus];
207
+ /**
208
+ * @public
209
+ * @enum
210
+ */
211
+ export declare const DefinitionType: {
212
+ readonly APP_REGISTRY: "APP_REGISTRY";
213
+ readonly WORKLOAD_METADATA: "WORKLOAD_METADATA";
214
+ };
215
+ /**
216
+ * @public
217
+ */
218
+ export type DefinitionType = (typeof DefinitionType)[keyof typeof DefinitionType];
219
+ /**
220
+ * @public
221
+ * @enum
222
+ */
223
+ export declare const WorkloadEnvironment: {
224
+ readonly PREPRODUCTION: "PREPRODUCTION";
225
+ readonly PRODUCTION: "PRODUCTION";
226
+ };
227
+ /**
228
+ * @public
229
+ */
230
+ export type WorkloadEnvironment = (typeof WorkloadEnvironment)[keyof typeof WorkloadEnvironment];
231
+ /**
232
+ * @public
233
+ * @enum
234
+ */
235
+ export declare const WorkloadIssueManagementStatus: {
236
+ readonly DISABLED: "DISABLED";
237
+ readonly ENABLED: "ENABLED";
238
+ readonly INHERIT: "INHERIT";
239
+ };
240
+ /**
241
+ * @public
242
+ */
243
+ export type WorkloadIssueManagementStatus = (typeof WorkloadIssueManagementStatus)[keyof typeof WorkloadIssueManagementStatus];
244
+ /**
245
+ * @public
246
+ * @enum
247
+ */
248
+ export declare const PermissionType: {
249
+ readonly CONTRIBUTOR: "CONTRIBUTOR";
250
+ readonly READONLY: "READONLY";
251
+ };
252
+ /**
253
+ * @public
254
+ */
255
+ export type PermissionType = (typeof PermissionType)[keyof typeof PermissionType];
256
+ /**
257
+ * @public
258
+ * @enum
259
+ */
260
+ export declare const LensStatusType: {
261
+ readonly ALL: "ALL";
262
+ readonly DRAFT: "DRAFT";
263
+ readonly PUBLISHED: "PUBLISHED";
264
+ };
265
+ /**
266
+ * @public
267
+ */
268
+ export type LensStatusType = (typeof LensStatusType)[keyof typeof LensStatusType];
269
+ /**
270
+ * @public
271
+ * @enum
272
+ */
273
+ export declare const DifferenceStatus: {
274
+ readonly DELETED: "DELETED";
275
+ readonly NEW: "NEW";
276
+ readonly UPDATED: "UPDATED";
277
+ };
278
+ /**
279
+ * @public
280
+ */
281
+ export type DifferenceStatus = (typeof DifferenceStatus)[keyof typeof DifferenceStatus];
282
+ /**
283
+ * @public
284
+ * @enum
285
+ */
286
+ export declare const DiscoveryIntegrationStatus: {
287
+ readonly DISABLED: "DISABLED";
288
+ readonly ENABLED: "ENABLED";
289
+ };
290
+ /**
291
+ * @public
292
+ */
293
+ export type DiscoveryIntegrationStatus = (typeof DiscoveryIntegrationStatus)[keyof typeof DiscoveryIntegrationStatus];
294
+ /**
295
+ * @public
296
+ * @enum
297
+ */
298
+ export declare const ReportFormat: {
299
+ readonly JSON: "JSON";
300
+ readonly PDF: "PDF";
301
+ };
302
+ /**
303
+ * @public
304
+ */
305
+ export type ReportFormat = (typeof ReportFormat)[keyof typeof ReportFormat];
306
+ /**
307
+ * @public
308
+ * @enum
309
+ */
310
+ export declare const OrganizationSharingStatus: {
311
+ readonly DISABLED: "DISABLED";
312
+ readonly ENABLED: "ENABLED";
313
+ };
314
+ /**
315
+ * @public
316
+ */
317
+ export type OrganizationSharingStatus = (typeof OrganizationSharingStatus)[keyof typeof OrganizationSharingStatus];
318
+ /**
319
+ * @public
320
+ * @enum
321
+ */
322
+ export declare const LensStatus: {
323
+ readonly CURRENT: "CURRENT";
324
+ readonly DELETED: "DELETED";
325
+ readonly DEPRECATED: "DEPRECATED";
326
+ readonly NOT_CURRENT: "NOT_CURRENT";
327
+ readonly UNSHARED: "UNSHARED";
328
+ };
329
+ /**
330
+ * @public
331
+ */
332
+ export type LensStatus = (typeof LensStatus)[keyof typeof LensStatus];
333
+ /**
334
+ * @public
335
+ * @enum
336
+ */
337
+ export declare const WorkloadImprovementStatus: {
338
+ readonly COMPLETE: "COMPLETE";
339
+ readonly IN_PROGRESS: "IN_PROGRESS";
340
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
341
+ readonly NOT_STARTED: "NOT_STARTED";
342
+ readonly RISK_ACKNOWLEDGED: "RISK_ACKNOWLEDGED";
343
+ };
344
+ /**
345
+ * @public
346
+ */
347
+ export type WorkloadImprovementStatus = (typeof WorkloadImprovementStatus)[keyof typeof WorkloadImprovementStatus];
348
+ /**
349
+ * @public
350
+ * @enum
351
+ */
352
+ export declare const Question: {
353
+ readonly ANSWERED: "ANSWERED";
354
+ readonly UNANSWERED: "UNANSWERED";
355
+ };
356
+ /**
357
+ * @public
358
+ */
359
+ export type Question = (typeof Question)[keyof typeof Question];
360
+ /**
361
+ * @public
362
+ * @enum
363
+ */
364
+ export declare const ReviewTemplateUpdateStatus: {
365
+ readonly CURRENT: "CURRENT";
366
+ readonly LENS_NOT_CURRENT: "LENS_NOT_CURRENT";
367
+ };
368
+ /**
369
+ * @public
370
+ */
371
+ export type ReviewTemplateUpdateStatus = (typeof ReviewTemplateUpdateStatus)[keyof typeof ReviewTemplateUpdateStatus];
372
+ /**
373
+ * @public
374
+ * @enum
375
+ */
376
+ export declare const ReviewTemplateAnswerStatus: {
377
+ readonly ANSWERED: "ANSWERED";
378
+ readonly UNANSWERED: "UNANSWERED";
379
+ };
380
+ /**
381
+ * @public
382
+ */
383
+ export type ReviewTemplateAnswerStatus = (typeof ReviewTemplateAnswerStatus)[keyof typeof ReviewTemplateAnswerStatus];
384
+ /**
385
+ * @public
386
+ * @enum
387
+ */
388
+ export declare const ImportLensStatus: {
389
+ readonly COMPLETE: "COMPLETE";
390
+ readonly ERROR: "ERROR";
391
+ readonly IN_PROGRESS: "IN_PROGRESS";
392
+ };
393
+ /**
394
+ * @public
395
+ */
396
+ export type ImportLensStatus = (typeof ImportLensStatus)[keyof typeof ImportLensStatus];
397
+ /**
398
+ * @public
399
+ * @enum
400
+ */
401
+ export declare const IntegratingService: {
402
+ readonly JIRA: "JIRA";
403
+ };
404
+ /**
405
+ * @public
406
+ */
407
+ export type IntegratingService = (typeof IntegratingService)[keyof typeof IntegratingService];
408
+ /**
409
+ * @public
410
+ * @enum
411
+ */
412
+ export declare const ShareStatus: {
413
+ readonly ACCEPTED: "ACCEPTED";
414
+ readonly ASSOCIATED: "ASSOCIATED";
415
+ readonly ASSOCIATING: "ASSOCIATING";
416
+ readonly EXPIRED: "EXPIRED";
417
+ readonly FAILED: "FAILED";
418
+ readonly PENDING: "PENDING";
419
+ readonly REJECTED: "REJECTED";
420
+ readonly REVOKED: "REVOKED";
421
+ };
422
+ /**
423
+ * @public
424
+ */
425
+ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
426
+ /**
427
+ * @public
428
+ * @enum
429
+ */
430
+ export declare const LensType: {
431
+ readonly AWS_OFFICIAL: "AWS_OFFICIAL";
432
+ readonly CUSTOM_SELF: "CUSTOM_SELF";
433
+ readonly CUSTOM_SHARED: "CUSTOM_SHARED";
434
+ };
435
+ /**
436
+ * @public
437
+ */
438
+ export type LensType = (typeof LensType)[keyof typeof LensType];
439
+ /**
440
+ * @public
441
+ * @enum
442
+ */
443
+ export declare const QuestionPriority: {
444
+ readonly NONE: "NONE";
445
+ readonly PRIORITIZED: "PRIORITIZED";
446
+ };
447
+ /**
448
+ * @public
449
+ */
450
+ export type QuestionPriority = (typeof QuestionPriority)[keyof typeof QuestionPriority];
451
+ /**
452
+ * @public
453
+ * @enum
454
+ */
455
+ export declare const NotificationType: {
456
+ readonly LENS_VERSION_DEPRECATED: "LENS_VERSION_DEPRECATED";
457
+ readonly LENS_VERSION_UPGRADED: "LENS_VERSION_UPGRADED";
458
+ };
459
+ /**
460
+ * @public
461
+ */
462
+ export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
463
+ /**
464
+ * @public
465
+ * @enum
466
+ */
467
+ export declare const ProfileNotificationType: {
468
+ readonly PROFILE_ANSWERS_UPDATED: "PROFILE_ANSWERS_UPDATED";
469
+ readonly PROFILE_DELETED: "PROFILE_DELETED";
470
+ };
471
+ /**
472
+ * @public
473
+ */
474
+ export type ProfileNotificationType = (typeof ProfileNotificationType)[keyof typeof ProfileNotificationType];
475
+ /**
476
+ * @public
477
+ * @enum
478
+ */
479
+ export declare const ProfileOwnerType: {
480
+ readonly SELF: "SELF";
481
+ readonly SHARED: "SHARED";
482
+ };
483
+ /**
484
+ * @public
485
+ */
486
+ export type ProfileOwnerType = (typeof ProfileOwnerType)[keyof typeof ProfileOwnerType];
487
+ /**
488
+ * @public
489
+ * @enum
490
+ */
491
+ export declare const ShareResourceType: {
492
+ readonly LENS: "LENS";
493
+ readonly PROFILE: "PROFILE";
494
+ readonly TEMPLATE: "TEMPLATE";
495
+ readonly WORKLOAD: "WORKLOAD";
496
+ };
497
+ /**
498
+ * @public
499
+ */
500
+ export type ShareResourceType = (typeof ShareResourceType)[keyof typeof ShareResourceType];
501
+ /**
502
+ * @public
503
+ * @enum
504
+ */
505
+ export declare const ShareInvitationAction: {
506
+ readonly ACCEPT: "ACCEPT";
507
+ readonly REJECT: "REJECT";
508
+ };
509
+ /**
510
+ * @public
511
+ */
512
+ export type ShareInvitationAction = (typeof ShareInvitationAction)[keyof typeof ShareInvitationAction];
@@ -0,0 +1,183 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
3
+ import { ValidationExceptionField } from "./models_0";
4
+ import { WellArchitectedServiceException as __BaseException } from "./WellArchitectedServiceException";
5
+ /**
6
+ * <p>User does not have sufficient access to perform this action.</p>
7
+ * @public
8
+ */
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ /**
13
+ * <p>Description of the error.</p>
14
+ * @public
15
+ */
16
+ Message: string | undefined;
17
+ /**
18
+ * @internal
19
+ */
20
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
21
+ }
22
+ /**
23
+ * <p>The resource has already been processed, was deleted, or is too large.</p>
24
+ * @public
25
+ */
26
+ export declare class ConflictException extends __BaseException {
27
+ readonly name: "ConflictException";
28
+ readonly $fault: "client";
29
+ /**
30
+ * <p>Description of the error.</p>
31
+ * @public
32
+ */
33
+ Message: string | undefined;
34
+ /**
35
+ * <p>Identifier of the resource affected.</p>
36
+ * @public
37
+ */
38
+ ResourceId: string | undefined;
39
+ /**
40
+ * <p>Type of the resource affected.</p>
41
+ * @public
42
+ */
43
+ ResourceType: string | undefined;
44
+ /**
45
+ * @internal
46
+ */
47
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
48
+ }
49
+ /**
50
+ * <p>There is a problem with the Well-Architected Tool API service.</p>
51
+ * @public
52
+ */
53
+ export declare class InternalServerException extends __BaseException {
54
+ readonly name: "InternalServerException";
55
+ readonly $fault: "server";
56
+ /**
57
+ * <p>Description of the error.</p>
58
+ * @public
59
+ */
60
+ Message: string | undefined;
61
+ /**
62
+ * @internal
63
+ */
64
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
65
+ }
66
+ /**
67
+ * <p>The requested resource was not found.</p>
68
+ * @public
69
+ */
70
+ export declare class ResourceNotFoundException extends __BaseException {
71
+ readonly name: "ResourceNotFoundException";
72
+ readonly $fault: "client";
73
+ /**
74
+ * <p>Description of the error.</p>
75
+ * @public
76
+ */
77
+ Message: string | undefined;
78
+ /**
79
+ * <p>Identifier of the resource affected.</p>
80
+ * @public
81
+ */
82
+ ResourceId: string | undefined;
83
+ /**
84
+ * <p>Type of the resource affected.</p>
85
+ * @public
86
+ */
87
+ ResourceType: string | undefined;
88
+ /**
89
+ * @internal
90
+ */
91
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
92
+ }
93
+ /**
94
+ * <p>Request was denied due to request throttling.</p>
95
+ * @public
96
+ */
97
+ export declare class ThrottlingException extends __BaseException {
98
+ readonly name: "ThrottlingException";
99
+ readonly $fault: "client";
100
+ /**
101
+ * <p>Description of the error.</p>
102
+ * @public
103
+ */
104
+ Message: string | undefined;
105
+ /**
106
+ * <p>Service Quotas requirement to identify originating quota.</p>
107
+ * @public
108
+ */
109
+ QuotaCode?: string | undefined;
110
+ /**
111
+ * <p>Service Quotas requirement to identify originating service.</p>
112
+ * @public
113
+ */
114
+ ServiceCode?: string | undefined;
115
+ /**
116
+ * @internal
117
+ */
118
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
119
+ }
120
+ /**
121
+ * <p>The user input is not valid.</p>
122
+ * @public
123
+ */
124
+ export declare class ValidationException extends __BaseException {
125
+ readonly name: "ValidationException";
126
+ readonly $fault: "client";
127
+ /**
128
+ * <p>Description of the error.</p>
129
+ * @public
130
+ */
131
+ Message: string | undefined;
132
+ /**
133
+ * <p>The reason why the request failed validation.</p>
134
+ * @public
135
+ */
136
+ Reason?: ValidationExceptionReason | undefined;
137
+ /**
138
+ * <p>The fields that caused the error, if applicable.</p>
139
+ * @public
140
+ */
141
+ Fields?: ValidationExceptionField[] | undefined;
142
+ /**
143
+ * @internal
144
+ */
145
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
146
+ }
147
+ /**
148
+ * <p>The user has reached their resource quota.</p>
149
+ * @public
150
+ */
151
+ export declare class ServiceQuotaExceededException extends __BaseException {
152
+ readonly name: "ServiceQuotaExceededException";
153
+ readonly $fault: "client";
154
+ /**
155
+ * <p>Description of the error.</p>
156
+ * @public
157
+ */
158
+ Message: string | undefined;
159
+ /**
160
+ * <p>Identifier of the resource affected.</p>
161
+ * @public
162
+ */
163
+ ResourceId?: string | undefined;
164
+ /**
165
+ * <p>Type of the resource affected.</p>
166
+ * @public
167
+ */
168
+ ResourceType?: string | undefined;
169
+ /**
170
+ * <p>Service Quotas requirement to identify originating quota.</p>
171
+ * @public
172
+ */
173
+ QuotaCode: string | undefined;
174
+ /**
175
+ * <p>Service Quotas requirement to identify originating service.</p>
176
+ * @public
177
+ */
178
+ ServiceCode: string | undefined;
179
+ /**
180
+ * @internal
181
+ */
182
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
183
+ }