@aws-sdk/client-resiliencehub 3.934.0 → 3.936.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,582 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ResourceMappingType: {
6
+ readonly APP_REGISTRY_APP: "AppRegistryApp";
7
+ readonly CFN_STACK: "CfnStack";
8
+ readonly EKS: "EKS";
9
+ readonly RESOURCE: "Resource";
10
+ readonly RESOURCE_GROUP: "ResourceGroup";
11
+ readonly TERRAFORM: "Terraform";
12
+ };
13
+ /**
14
+ * @public
15
+ */
16
+ export type ResourceMappingType = (typeof ResourceMappingType)[keyof typeof ResourceMappingType];
17
+ /**
18
+ * @public
19
+ * @enum
20
+ */
21
+ export declare const PhysicalIdentifierType: {
22
+ readonly ARN: "Arn";
23
+ readonly NATIVE: "Native";
24
+ };
25
+ /**
26
+ * @public
27
+ */
28
+ export type PhysicalIdentifierType = (typeof PhysicalIdentifierType)[keyof typeof PhysicalIdentifierType];
29
+ /**
30
+ * @public
31
+ * @enum
32
+ */
33
+ export declare const ExcludeRecommendationReason: {
34
+ readonly ALREADY_IMPLEMENTED: "AlreadyImplemented";
35
+ readonly COMPLEXITY_OF_IMPLEMENTATION: "ComplexityOfImplementation";
36
+ readonly NOT_RELEVANT: "NotRelevant";
37
+ };
38
+ /**
39
+ * @public
40
+ */
41
+ export type ExcludeRecommendationReason = (typeof ExcludeRecommendationReason)[keyof typeof ExcludeRecommendationReason];
42
+ /**
43
+ * @public
44
+ * @enum
45
+ */
46
+ export declare const RecommendationStatus: {
47
+ readonly EXCLUDED: "Excluded";
48
+ readonly IMPLEMENTED: "Implemented";
49
+ readonly INACTIVE: "Inactive";
50
+ readonly NOT_IMPLEMENTED: "NotImplemented";
51
+ };
52
+ /**
53
+ * @public
54
+ */
55
+ export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
56
+ /**
57
+ * @public
58
+ * @enum
59
+ */
60
+ export declare const AlarmType: {
61
+ readonly CANARY: "Canary";
62
+ readonly COMPOSITE: "Composite";
63
+ readonly EVENT: "Event";
64
+ readonly LOGS: "Logs";
65
+ readonly METRIC: "Metric";
66
+ };
67
+ /**
68
+ * @public
69
+ */
70
+ export type AlarmType = (typeof AlarmType)[keyof typeof AlarmType];
71
+ /**
72
+ * @public
73
+ * @enum
74
+ */
75
+ export declare const AppAssessmentScheduleType: {
76
+ readonly DAILY: "Daily";
77
+ readonly DISABLED: "Disabled";
78
+ };
79
+ /**
80
+ * @public
81
+ */
82
+ export type AppAssessmentScheduleType = (typeof AppAssessmentScheduleType)[keyof typeof AppAssessmentScheduleType];
83
+ /**
84
+ * @public
85
+ * @enum
86
+ */
87
+ export declare const AppComplianceStatusType: {
88
+ readonly CHANGES_DETECTED: "ChangesDetected";
89
+ readonly MISSING_POLICY: "MissingPolicy";
90
+ readonly NOT_APPLICABLE: "NotApplicable";
91
+ readonly NOT_ASSESSED: "NotAssessed";
92
+ readonly POLICY_BREACHED: "PolicyBreached";
93
+ readonly POLICY_MET: "PolicyMet";
94
+ };
95
+ /**
96
+ * @public
97
+ */
98
+ export type AppComplianceStatusType = (typeof AppComplianceStatusType)[keyof typeof AppComplianceStatusType];
99
+ /**
100
+ * @public
101
+ * @enum
102
+ */
103
+ export declare const AppDriftStatusType: {
104
+ readonly DETECTED: "Detected";
105
+ readonly NOT_CHECKED: "NotChecked";
106
+ readonly NOT_DETECTED: "NotDetected";
107
+ };
108
+ /**
109
+ * @public
110
+ */
111
+ export type AppDriftStatusType = (typeof AppDriftStatusType)[keyof typeof AppDriftStatusType];
112
+ /**
113
+ * @public
114
+ * @enum
115
+ */
116
+ export declare const EventType: {
117
+ readonly DRIFT_DETECTED: "DriftDetected";
118
+ readonly SCHEDULED_ASSESSMENT_FAILURE: "ScheduledAssessmentFailure";
119
+ };
120
+ /**
121
+ * @public
122
+ */
123
+ export type EventType = (typeof EventType)[keyof typeof EventType];
124
+ /**
125
+ * @public
126
+ * @enum
127
+ */
128
+ export declare const PermissionModelType: {
129
+ readonly LEGACY_IAM_USER: "LegacyIAMUser";
130
+ readonly ROLE_BASED: "RoleBased";
131
+ };
132
+ /**
133
+ * @public
134
+ */
135
+ export type PermissionModelType = (typeof PermissionModelType)[keyof typeof PermissionModelType];
136
+ /**
137
+ * @public
138
+ * @enum
139
+ */
140
+ export declare const AppStatusType: {
141
+ readonly ACTIVE: "Active";
142
+ readonly DELETING: "Deleting";
143
+ };
144
+ /**
145
+ * @public
146
+ */
147
+ export type AppStatusType = (typeof AppStatusType)[keyof typeof AppStatusType];
148
+ /**
149
+ * @public
150
+ * @enum
151
+ */
152
+ export declare const AssessmentStatus: {
153
+ readonly FAILED: "Failed";
154
+ readonly INPROGRESS: "InProgress";
155
+ readonly PENDING: "Pending";
156
+ readonly SUCCESS: "Success";
157
+ };
158
+ /**
159
+ * @public
160
+ */
161
+ export type AssessmentStatus = (typeof AssessmentStatus)[keyof typeof AssessmentStatus];
162
+ /**
163
+ * @public
164
+ * @enum
165
+ */
166
+ export declare const DisruptionType: {
167
+ readonly AZ: "AZ";
168
+ readonly HARDWARE: "Hardware";
169
+ readonly REGION: "Region";
170
+ readonly SOFTWARE: "Software";
171
+ };
172
+ /**
173
+ * @public
174
+ */
175
+ export type DisruptionType = (typeof DisruptionType)[keyof typeof DisruptionType];
176
+ /**
177
+ * @public
178
+ * @enum
179
+ */
180
+ export declare const ComplianceStatus: {
181
+ readonly MISSING_POLICY: "MissingPolicy";
182
+ readonly NOT_APPLICABLE: "NotApplicable";
183
+ readonly POLICY_BREACHED: "PolicyBreached";
184
+ readonly POLICY_MET: "PolicyMet";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type ComplianceStatus = (typeof ComplianceStatus)[keyof typeof ComplianceStatus];
190
+ /**
191
+ * @public
192
+ * @enum
193
+ */
194
+ export declare const CostFrequency: {
195
+ readonly DAILY: "Daily";
196
+ readonly HOURLY: "Hourly";
197
+ readonly MONTHLY: "Monthly";
198
+ readonly YEARLY: "Yearly";
199
+ };
200
+ /**
201
+ * @public
202
+ */
203
+ export type CostFrequency = (typeof CostFrequency)[keyof typeof CostFrequency];
204
+ /**
205
+ * @public
206
+ * @enum
207
+ */
208
+ export declare const DriftStatus: {
209
+ readonly DETECTED: "Detected";
210
+ readonly NOT_CHECKED: "NotChecked";
211
+ readonly NOT_DETECTED: "NotDetected";
212
+ };
213
+ /**
214
+ * @public
215
+ */
216
+ export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
217
+ /**
218
+ * @public
219
+ * @enum
220
+ */
221
+ export declare const AssessmentInvoker: {
222
+ readonly SYSTEM: "System";
223
+ readonly USER: "User";
224
+ };
225
+ /**
226
+ * @public
227
+ */
228
+ export type AssessmentInvoker = (typeof AssessmentInvoker)[keyof typeof AssessmentInvoker];
229
+ /**
230
+ * @public
231
+ * @enum
232
+ */
233
+ export declare const DataLocationConstraint: {
234
+ readonly ANY_LOCATION: "AnyLocation";
235
+ readonly SAME_CONTINENT: "SameContinent";
236
+ readonly SAME_COUNTRY: "SameCountry";
237
+ };
238
+ /**
239
+ * @public
240
+ */
241
+ export type DataLocationConstraint = (typeof DataLocationConstraint)[keyof typeof DataLocationConstraint];
242
+ /**
243
+ * @public
244
+ * @enum
245
+ */
246
+ export declare const EstimatedCostTier: {
247
+ readonly L1: "L1";
248
+ readonly L2: "L2";
249
+ readonly L3: "L3";
250
+ readonly L4: "L4";
251
+ };
252
+ /**
253
+ * @public
254
+ */
255
+ export type EstimatedCostTier = (typeof EstimatedCostTier)[keyof typeof EstimatedCostTier];
256
+ /**
257
+ * @public
258
+ * @enum
259
+ */
260
+ export declare const ResiliencyPolicyTier: {
261
+ readonly CORE_SERVICES: "CoreServices";
262
+ readonly CRITICAL: "Critical";
263
+ readonly IMPORTANT: "Important";
264
+ readonly MISSION_CRITICAL: "MissionCritical";
265
+ readonly NON_CRITICAL: "NonCritical";
266
+ readonly NOT_APPLICABLE: "NotApplicable";
267
+ };
268
+ /**
269
+ * @public
270
+ */
271
+ export type ResiliencyPolicyTier = (typeof ResiliencyPolicyTier)[keyof typeof ResiliencyPolicyTier];
272
+ /**
273
+ * @public
274
+ * @enum
275
+ */
276
+ export declare const ResiliencyScoreType: {
277
+ readonly ALARM: "Alarm";
278
+ readonly COMPLIANCE: "Compliance";
279
+ readonly SOP: "Sop";
280
+ readonly TEST: "Test";
281
+ };
282
+ /**
283
+ * @public
284
+ */
285
+ export type ResiliencyScoreType = (typeof ResiliencyScoreType)[keyof typeof ResiliencyScoreType];
286
+ /**
287
+ * @public
288
+ * @enum
289
+ */
290
+ export declare const ResourceSourceType: {
291
+ readonly APP_TEMPLATE: "AppTemplate";
292
+ readonly DISCOVERED: "Discovered";
293
+ };
294
+ /**
295
+ * @public
296
+ */
297
+ export type ResourceSourceType = (typeof ResourceSourceType)[keyof typeof ResourceSourceType];
298
+ /**
299
+ * @public
300
+ * @enum
301
+ */
302
+ export declare const TemplateFormat: {
303
+ readonly CFN_JSON: "CfnJson";
304
+ readonly CFN_YAML: "CfnYaml";
305
+ };
306
+ /**
307
+ * @public
308
+ */
309
+ export type TemplateFormat = (typeof TemplateFormat)[keyof typeof TemplateFormat];
310
+ /**
311
+ * @public
312
+ * @enum
313
+ */
314
+ export declare const RenderRecommendationType: {
315
+ readonly ALARM: "Alarm";
316
+ readonly SOP: "Sop";
317
+ readonly TEST: "Test";
318
+ };
319
+ /**
320
+ * @public
321
+ */
322
+ export type RenderRecommendationType = (typeof RenderRecommendationType)[keyof typeof RenderRecommendationType];
323
+ /**
324
+ * @public
325
+ * @enum
326
+ */
327
+ export declare const RecommendationTemplateStatus: {
328
+ readonly FAILED: "Failed";
329
+ readonly IN_PROGRESS: "InProgress";
330
+ readonly PENDING: "Pending";
331
+ readonly SUCCESS: "Success";
332
+ };
333
+ /**
334
+ * @public
335
+ */
336
+ export type RecommendationTemplateStatus = (typeof RecommendationTemplateStatus)[keyof typeof RecommendationTemplateStatus];
337
+ /**
338
+ * @public
339
+ * @enum
340
+ */
341
+ export declare const ResourceResolutionStatusType: {
342
+ readonly FAILED: "Failed";
343
+ readonly IN_PROGRESS: "InProgress";
344
+ readonly PENDING: "Pending";
345
+ readonly SUCCESS: "Success";
346
+ };
347
+ /**
348
+ * @public
349
+ */
350
+ export type ResourceResolutionStatusType = (typeof ResourceResolutionStatusType)[keyof typeof ResourceResolutionStatusType];
351
+ /**
352
+ * @public
353
+ * @enum
354
+ */
355
+ export declare const ResourceImportStatusType: {
356
+ readonly FAILED: "Failed";
357
+ readonly IN_PROGRESS: "InProgress";
358
+ readonly PENDING: "Pending";
359
+ readonly SUCCESS: "Success";
360
+ };
361
+ /**
362
+ * @public
363
+ */
364
+ export type ResourceImportStatusType = (typeof ResourceImportStatusType)[keyof typeof ResourceImportStatusType];
365
+ /**
366
+ * @public
367
+ * @enum
368
+ */
369
+ export declare const MetricsExportStatusType: {
370
+ readonly FAILED: "Failed";
371
+ readonly IN_PROGRESS: "InProgress";
372
+ readonly PENDING: "Pending";
373
+ readonly SUCCESS: "Success";
374
+ };
375
+ /**
376
+ * @public
377
+ */
378
+ export type MetricsExportStatusType = (typeof MetricsExportStatusType)[keyof typeof MetricsExportStatusType];
379
+ /**
380
+ * @public
381
+ * @enum
382
+ */
383
+ export declare const ResourcesGroupingRecGenStatusType: {
384
+ readonly FAILED: "Failed";
385
+ readonly IN_PROGRESS: "InProgress";
386
+ readonly PENDING: "Pending";
387
+ readonly SUCCESS: "Success";
388
+ };
389
+ /**
390
+ * @public
391
+ */
392
+ export type ResourcesGroupingRecGenStatusType = (typeof ResourcesGroupingRecGenStatusType)[keyof typeof ResourcesGroupingRecGenStatusType];
393
+ /**
394
+ * @public
395
+ * @enum
396
+ */
397
+ export declare const ResourceImportStrategyType: {
398
+ readonly ADD_ONLY: "AddOnly";
399
+ readonly REPLACE_ALL: "ReplaceAll";
400
+ };
401
+ /**
402
+ * @public
403
+ */
404
+ export type ResourceImportStrategyType = (typeof ResourceImportStrategyType)[keyof typeof ResourceImportStrategyType];
405
+ /**
406
+ * @public
407
+ * @enum
408
+ */
409
+ export declare const DifferenceType: {
410
+ readonly ADDED: "Added";
411
+ readonly NOT_EQUAL: "NotEqual";
412
+ readonly REMOVED: "Removed";
413
+ };
414
+ /**
415
+ * @public
416
+ */
417
+ export type DifferenceType = (typeof DifferenceType)[keyof typeof DifferenceType];
418
+ /**
419
+ * @public
420
+ * @enum
421
+ */
422
+ export declare const DriftType: {
423
+ readonly APPLICATION_COMPLIANCE: "ApplicationCompliance";
424
+ readonly APP_COMPONENT_RESILIENCY_COMPLIANCE_STATUS: "AppComponentResiliencyComplianceStatus";
425
+ };
426
+ /**
427
+ * @public
428
+ */
429
+ export type DriftType = (typeof DriftType)[keyof typeof DriftType];
430
+ /**
431
+ * @public
432
+ * @enum
433
+ */
434
+ export declare const HaArchitecture: {
435
+ readonly BACKUP_AND_RESTORE: "BackupAndRestore";
436
+ readonly MULTI_SITE: "MultiSite";
437
+ readonly NO_RECOVERY_PLAN: "NoRecoveryPlan";
438
+ readonly PILOT_LIGHT: "PilotLight";
439
+ readonly WARM_STANDBY: "WarmStandby";
440
+ };
441
+ /**
442
+ * @public
443
+ */
444
+ export type HaArchitecture = (typeof HaArchitecture)[keyof typeof HaArchitecture];
445
+ /**
446
+ * @public
447
+ * @enum
448
+ */
449
+ export declare const ConfigRecommendationOptimizationType: {
450
+ readonly BEST_ATTAINABLE: "BestAttainable";
451
+ readonly BEST_AZ_RECOVERY: "BestAZRecovery";
452
+ readonly BEST_REGION_RECOVERY: "BestRegionRecovery";
453
+ readonly LEAST_CHANGE: "LeastChange";
454
+ readonly LEAST_COST: "LeastCost";
455
+ readonly LEAST_ERRORS: "LeastErrors";
456
+ };
457
+ /**
458
+ * @public
459
+ */
460
+ export type ConfigRecommendationOptimizationType = (typeof ConfigRecommendationOptimizationType)[keyof typeof ConfigRecommendationOptimizationType];
461
+ /**
462
+ * @public
463
+ * @enum
464
+ */
465
+ export declare const RecommendationComplianceStatus: {
466
+ readonly BREACHED_CAN_MEET: "BreachedCanMeet";
467
+ readonly BREACHED_UNATTAINABLE: "BreachedUnattainable";
468
+ readonly MET_CAN_IMPROVE: "MetCanImprove";
469
+ readonly MISSING_POLICY: "MissingPolicy";
470
+ };
471
+ /**
472
+ * @public
473
+ */
474
+ export type RecommendationComplianceStatus = (typeof RecommendationComplianceStatus)[keyof typeof RecommendationComplianceStatus];
475
+ /**
476
+ * @public
477
+ * @enum
478
+ */
479
+ export declare const ConditionOperatorType: {
480
+ readonly EQUALS: "Equals";
481
+ readonly GREATER_OR_EQUALS: "GreaterOrEquals";
482
+ readonly GREATER_THEN: "GreaterThen";
483
+ readonly LESS_OR_EQUALS: "LessOrEquals";
484
+ readonly LESS_THEN: "LessThen";
485
+ readonly NOT_EQUALS: "NotEquals";
486
+ };
487
+ /**
488
+ * @public
489
+ */
490
+ export type ConditionOperatorType = (typeof ConditionOperatorType)[keyof typeof ConditionOperatorType];
491
+ /**
492
+ * @public
493
+ * @enum
494
+ */
495
+ export declare const FieldAggregationType: {
496
+ readonly AVG: "Avg";
497
+ readonly COUNT: "Count";
498
+ readonly MAX: "Max";
499
+ readonly MIN: "Min";
500
+ readonly SUM: "Sum";
501
+ };
502
+ /**
503
+ * @public
504
+ */
505
+ export type FieldAggregationType = (typeof FieldAggregationType)[keyof typeof FieldAggregationType];
506
+ /**
507
+ * @public
508
+ * @enum
509
+ */
510
+ export declare const GroupingRecommendationConfidenceLevel: {
511
+ readonly HIGH: "High";
512
+ readonly MEDIUM: "Medium";
513
+ };
514
+ /**
515
+ * @public
516
+ */
517
+ export type GroupingRecommendationConfidenceLevel = (typeof GroupingRecommendationConfidenceLevel)[keyof typeof GroupingRecommendationConfidenceLevel];
518
+ /**
519
+ * @public
520
+ * @enum
521
+ */
522
+ export declare const GroupingRecommendationRejectionReason: {
523
+ readonly DISTINCT_BUSINESS_PURPOSE: "DistinctBusinessPurpose";
524
+ readonly DISTINCT_USER_GROUP_HANDLING: "DistinctUserGroupHandling";
525
+ readonly OTHER: "Other";
526
+ readonly SEPARATE_DATA_CONCERN: "SeparateDataConcern";
527
+ };
528
+ /**
529
+ * @public
530
+ */
531
+ export type GroupingRecommendationRejectionReason = (typeof GroupingRecommendationRejectionReason)[keyof typeof GroupingRecommendationRejectionReason];
532
+ /**
533
+ * @public
534
+ * @enum
535
+ */
536
+ export declare const GroupingRecommendationStatusType: {
537
+ readonly ACCEPTED: "Accepted";
538
+ readonly PENDING_DECISION: "PendingDecision";
539
+ readonly REJECTED: "Rejected";
540
+ };
541
+ /**
542
+ * @public
543
+ */
544
+ export type GroupingRecommendationStatusType = (typeof GroupingRecommendationStatusType)[keyof typeof GroupingRecommendationStatusType];
545
+ /**
546
+ * @public
547
+ * @enum
548
+ */
549
+ export declare const SopServiceType: {
550
+ readonly SSM: "SSM";
551
+ };
552
+ /**
553
+ * @public
554
+ */
555
+ export type SopServiceType = (typeof SopServiceType)[keyof typeof SopServiceType];
556
+ /**
557
+ * @public
558
+ * @enum
559
+ */
560
+ export declare const TestRisk: {
561
+ readonly HIGH: "High";
562
+ readonly MEDIUM: "Medium";
563
+ readonly SMALL: "Small";
564
+ };
565
+ /**
566
+ * @public
567
+ */
568
+ export type TestRisk = (typeof TestRisk)[keyof typeof TestRisk];
569
+ /**
570
+ * @public
571
+ * @enum
572
+ */
573
+ export declare const TestType: {
574
+ readonly AZ: "AZ";
575
+ readonly HARDWARE: "Hardware";
576
+ readonly REGION: "Region";
577
+ readonly SOFTWARE: "Software";
578
+ };
579
+ /**
580
+ * @public
581
+ */
582
+ export type TestType = (typeof TestType)[keyof typeof TestType];
@@ -0,0 +1,118 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ResiliencehubServiceException as __BaseException } from "./ResiliencehubServiceException";
3
+ /**
4
+ * <p>You don't have permissions to perform the requested operation. The user or role that is
5
+ * making the request must have at least one IAM permissions policy attached that grants the
6
+ * required permissions.</p>
7
+ * @public
8
+ */
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ /**
13
+ * @internal
14
+ */
15
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
16
+ }
17
+ /**
18
+ * <p>This exception occurs when there is an internal failure in the Resilience Hub
19
+ * service.</p>
20
+ * @public
21
+ */
22
+ export declare class InternalServerException extends __BaseException {
23
+ readonly name: "InternalServerException";
24
+ readonly $fault: "server";
25
+ /**
26
+ * @internal
27
+ */
28
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
29
+ }
30
+ /**
31
+ * <p>This exception occurs when the specified resource could not be found.</p>
32
+ * @public
33
+ */
34
+ export declare class ResourceNotFoundException extends __BaseException {
35
+ readonly name: "ResourceNotFoundException";
36
+ readonly $fault: "client";
37
+ /**
38
+ * <p>The identifier of the resource that the exception applies to.</p>
39
+ * @public
40
+ */
41
+ resourceId?: string | undefined;
42
+ /**
43
+ * <p>The type of the resource that the exception applies to.</p>
44
+ * @public
45
+ */
46
+ resourceType?: string | undefined;
47
+ /**
48
+ * @internal
49
+ */
50
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
51
+ }
52
+ /**
53
+ * <p>This exception occurs when you have exceeded the limit on the number of requests per second.</p>
54
+ * @public
55
+ */
56
+ export declare class ThrottlingException extends __BaseException {
57
+ readonly name: "ThrottlingException";
58
+ readonly $fault: "client";
59
+ /**
60
+ * <p>The number of seconds to wait before retrying the operation.</p>
61
+ * @public
62
+ */
63
+ retryAfterSeconds?: number | undefined;
64
+ /**
65
+ * @internal
66
+ */
67
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
68
+ }
69
+ /**
70
+ * <p>This exception occurs when a request is not valid.</p>
71
+ * @public
72
+ */
73
+ export declare class ValidationException extends __BaseException {
74
+ readonly name: "ValidationException";
75
+ readonly $fault: "client";
76
+ /**
77
+ * @internal
78
+ */
79
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
80
+ }
81
+ /**
82
+ * <p>This exception occurs when a conflict with a previous successful write is detected. This generally occurs
83
+ * when the previous write did not have time to propagate to the host serving the current
84
+ * request. A retry (with appropriate backoff logic) is the recommended response to this
85
+ * exception.</p>
86
+ * @public
87
+ */
88
+ export declare class ConflictException extends __BaseException {
89
+ readonly name: "ConflictException";
90
+ readonly $fault: "client";
91
+ /**
92
+ * <p>The identifier of the resource that the exception applies to.</p>
93
+ * @public
94
+ */
95
+ resourceId?: string | undefined;
96
+ /**
97
+ * <p>The type of the resource that the exception applies to.</p>
98
+ * @public
99
+ */
100
+ resourceType?: string | undefined;
101
+ /**
102
+ * @internal
103
+ */
104
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
105
+ }
106
+ /**
107
+ * <p>This exception occurs when you have exceeded your service quota. To perform the requested action, remove some of the
108
+ * relevant resources, or use Service Quotas to request a service quota increase.</p>
109
+ * @public
110
+ */
111
+ export declare class ServiceQuotaExceededException extends __BaseException {
112
+ readonly name: "ServiceQuotaExceededException";
113
+ readonly $fault: "client";
114
+ /**
115
+ * @internal
116
+ */
117
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
118
+ }