@aws-sdk/client-appconfig 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.
@@ -0,0 +1,102 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
3
+ import { BadRequestReason, BytesMeasure } from "./enums";
4
+ import { BadRequestDetails } from "./models_0";
5
+ /**
6
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
7
+ * @public
8
+ */
9
+ export declare class BadRequestException extends __BaseException {
10
+ readonly name: "BadRequestException";
11
+ readonly $fault: "client";
12
+ Message?: string | undefined;
13
+ Reason?: BadRequestReason | undefined;
14
+ /**
15
+ * <p>Detailed information about the input that failed to satisfy the constraints specified by
16
+ * a call.</p>
17
+ * @public
18
+ */
19
+ Details?: BadRequestDetails | undefined;
20
+ /**
21
+ * @internal
22
+ */
23
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
24
+ }
25
+ /**
26
+ * <p>There was an internal failure in the AppConfig service.</p>
27
+ * @public
28
+ */
29
+ export declare class InternalServerException extends __BaseException {
30
+ readonly name: "InternalServerException";
31
+ readonly $fault: "server";
32
+ Message?: string | undefined;
33
+ /**
34
+ * @internal
35
+ */
36
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
37
+ }
38
+ /**
39
+ * <p>The number of one more AppConfig resources exceeds the maximum allowed. Verify that your
40
+ * environment doesn't exceed the following service quotas:</p>
41
+ * <p>Applications: 100 max</p>
42
+ * <p>Deployment strategies: 20 max</p>
43
+ * <p>Configuration profiles: 100 max per application</p>
44
+ * <p>Environments: 20 max per application</p>
45
+ * <p>To resolve this issue, you can delete one or more resources and try again. Or, you can
46
+ * request a quota increase. For more information about quotas and to request an increase, see
47
+ * <a href="https://docs.aws.amazon.com/general/latest/gr/appconfig.html#limits_appconfig">Service quotas for AppConfig</a> in the Amazon Web Services General Reference.</p>
48
+ * @public
49
+ */
50
+ export declare class ServiceQuotaExceededException extends __BaseException {
51
+ readonly name: "ServiceQuotaExceededException";
52
+ readonly $fault: "client";
53
+ Message?: string | undefined;
54
+ /**
55
+ * @internal
56
+ */
57
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
58
+ }
59
+ /**
60
+ * <p>The requested resource could not be found.</p>
61
+ * @public
62
+ */
63
+ export declare class ResourceNotFoundException extends __BaseException {
64
+ readonly name: "ResourceNotFoundException";
65
+ readonly $fault: "client";
66
+ Message?: string | undefined;
67
+ ResourceName?: string | undefined;
68
+ /**
69
+ * @internal
70
+ */
71
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
72
+ }
73
+ /**
74
+ * <p>The request could not be processed because of conflict in the current state of the
75
+ * resource.</p>
76
+ * @public
77
+ */
78
+ export declare class ConflictException extends __BaseException {
79
+ readonly name: "ConflictException";
80
+ readonly $fault: "client";
81
+ Message?: string | undefined;
82
+ /**
83
+ * @internal
84
+ */
85
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
86
+ }
87
+ /**
88
+ * <p>The configuration size is too large.</p>
89
+ * @public
90
+ */
91
+ export declare class PayloadTooLargeException extends __BaseException {
92
+ readonly name: "PayloadTooLargeException";
93
+ readonly $fault: "client";
94
+ Message?: string | undefined;
95
+ Measure?: BytesMeasure | undefined;
96
+ Limit?: number | undefined;
97
+ Size?: number | undefined;
98
+ /**
99
+ * @internal
100
+ */
101
+ constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
102
+ }
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
1
+ import { ActionPoint, DeletionProtectionCheck, DeploymentEventType, DeploymentState, EnvironmentState, GrowthType, ReplicateTo, TriggeredBy, ValidatorType } from "./enums";
3
2
  /**
4
3
  * <p>A parameter to configure deletion protection. Deletion protection prevents a user from
5
4
  * deleting a configuration profile or an environment if AppConfig has called either
@@ -158,24 +157,6 @@ export interface ActionInvocation {
158
157
  */
159
158
  InvocationId?: string | undefined;
160
159
  }
161
- /**
162
- * @public
163
- * @enum
164
- */
165
- export declare const ActionPoint: {
166
- readonly AT_DEPLOYMENT_TICK: "AT_DEPLOYMENT_TICK";
167
- readonly ON_DEPLOYMENT_BAKING: "ON_DEPLOYMENT_BAKING";
168
- readonly ON_DEPLOYMENT_COMPLETE: "ON_DEPLOYMENT_COMPLETE";
169
- readonly ON_DEPLOYMENT_ROLLED_BACK: "ON_DEPLOYMENT_ROLLED_BACK";
170
- readonly ON_DEPLOYMENT_START: "ON_DEPLOYMENT_START";
171
- readonly ON_DEPLOYMENT_STEP: "ON_DEPLOYMENT_STEP";
172
- readonly PRE_CREATE_HOSTED_CONFIGURATION_VERSION: "PRE_CREATE_HOSTED_CONFIGURATION_VERSION";
173
- readonly PRE_START_DEPLOYMENT: "PRE_START_DEPLOYMENT";
174
- };
175
- /**
176
- * @public
177
- */
178
- export type ActionPoint = (typeof ActionPoint)[keyof typeof ActionPoint];
179
160
  /**
180
161
  * @public
181
162
  */
@@ -266,37 +247,6 @@ export declare namespace BadRequestDetails {
266
247
  _: (name: string, value: any) => T;
267
248
  }
268
249
  }
269
- /**
270
- * @public
271
- * @enum
272
- */
273
- export declare const BadRequestReason: {
274
- readonly INVALID_CONFIGURATION: "InvalidConfiguration";
275
- };
276
- /**
277
- * @public
278
- */
279
- export type BadRequestReason = (typeof BadRequestReason)[keyof typeof BadRequestReason];
280
- /**
281
- * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
282
- * @public
283
- */
284
- export declare class BadRequestException extends __BaseException {
285
- readonly name: "BadRequestException";
286
- readonly $fault: "client";
287
- Message?: string | undefined;
288
- Reason?: BadRequestReason | undefined;
289
- /**
290
- * <p>Detailed information about the input that failed to satisfy the constraints specified by
291
- * a call.</p>
292
- * @public
293
- */
294
- Details?: BadRequestDetails | undefined;
295
- /**
296
- * @internal
297
- */
298
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
299
- }
300
250
  /**
301
251
  * @public
302
252
  */
@@ -318,52 +268,6 @@ export interface CreateApplicationRequest {
318
268
  */
319
269
  Tags?: Record<string, string> | undefined;
320
270
  }
321
- /**
322
- * <p>There was an internal failure in the AppConfig service.</p>
323
- * @public
324
- */
325
- export declare class InternalServerException extends __BaseException {
326
- readonly name: "InternalServerException";
327
- readonly $fault: "server";
328
- Message?: string | undefined;
329
- /**
330
- * @internal
331
- */
332
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
333
- }
334
- /**
335
- * <p>The number of one more AppConfig resources exceeds the maximum allowed. Verify that your
336
- * environment doesn't exceed the following service quotas:</p>
337
- * <p>Applications: 100 max</p>
338
- * <p>Deployment strategies: 20 max</p>
339
- * <p>Configuration profiles: 100 max per application</p>
340
- * <p>Environments: 20 max per application</p>
341
- * <p>To resolve this issue, you can delete one or more resources and try again. Or, you can
342
- * request a quota increase. For more information about quotas and to request an increase, see
343
- * <a href="https://docs.aws.amazon.com/general/latest/gr/appconfig.html#limits_appconfig">Service quotas for AppConfig</a> in the Amazon Web Services General Reference.</p>
344
- * @public
345
- */
346
- export declare class ServiceQuotaExceededException extends __BaseException {
347
- readonly name: "ServiceQuotaExceededException";
348
- readonly $fault: "client";
349
- Message?: string | undefined;
350
- /**
351
- * @internal
352
- */
353
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
354
- }
355
- /**
356
- * @public
357
- * @enum
358
- */
359
- export declare const ValidatorType: {
360
- readonly JSON_SCHEMA: "JSON_SCHEMA";
361
- readonly LAMBDA: "LAMBDA";
362
- };
363
- /**
364
- * @public
365
- */
366
- export type ValidatorType = (typeof ValidatorType)[keyof typeof ValidatorType];
367
271
  /**
368
272
  * <p>A validator provides a syntactic or semantic check to ensure the configuration that you
369
273
  * want to deploy functions as intended. To validate your application configuration data, you
@@ -559,44 +463,6 @@ export interface CreateConfigurationProfileRequest {
559
463
  */
560
464
  KmsKeyIdentifier?: string | undefined;
561
465
  }
562
- /**
563
- * <p>The requested resource could not be found.</p>
564
- * @public
565
- */
566
- export declare class ResourceNotFoundException extends __BaseException {
567
- readonly name: "ResourceNotFoundException";
568
- readonly $fault: "client";
569
- Message?: string | undefined;
570
- ResourceName?: string | undefined;
571
- /**
572
- * @internal
573
- */
574
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
575
- }
576
- /**
577
- * @public
578
- * @enum
579
- */
580
- export declare const GrowthType: {
581
- readonly EXPONENTIAL: "EXPONENTIAL";
582
- readonly LINEAR: "LINEAR";
583
- };
584
- /**
585
- * @public
586
- */
587
- export type GrowthType = (typeof GrowthType)[keyof typeof GrowthType];
588
- /**
589
- * @public
590
- * @enum
591
- */
592
- export declare const ReplicateTo: {
593
- readonly NONE: "NONE";
594
- readonly SSM_DOCUMENT: "SSM_DOCUMENT";
595
- };
596
- /**
597
- * @public
598
- */
599
- export type ReplicateTo = (typeof ReplicateTo)[keyof typeof ReplicateTo];
600
466
  /**
601
467
  * @public
602
468
  */
@@ -773,21 +639,6 @@ export interface CreateEnvironmentRequest {
773
639
  */
774
640
  Tags?: Record<string, string> | undefined;
775
641
  }
776
- /**
777
- * @public
778
- * @enum
779
- */
780
- export declare const EnvironmentState: {
781
- readonly DEPLOYING: "DEPLOYING";
782
- readonly READY_FOR_DEPLOYMENT: "READY_FOR_DEPLOYMENT";
783
- readonly REVERTED: "REVERTED";
784
- readonly ROLLED_BACK: "ROLLED_BACK";
785
- readonly ROLLING_BACK: "ROLLING_BACK";
786
- };
787
- /**
788
- * @public
789
- */
790
- export type EnvironmentState = (typeof EnvironmentState)[keyof typeof EnvironmentState];
791
642
  /**
792
643
  * @public
793
644
  */
@@ -826,20 +677,6 @@ export interface Environment {
826
677
  */
827
678
  Monitors?: Monitor[] | undefined;
828
679
  }
829
- /**
830
- * <p>The request could not be processed because of conflict in the current state of the
831
- * resource.</p>
832
- * @public
833
- */
834
- export declare class ConflictException extends __BaseException {
835
- readonly name: "ConflictException";
836
- readonly $fault: "client";
837
- Message?: string | undefined;
838
- /**
839
- * @internal
840
- */
841
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
842
- }
843
680
  /**
844
681
  * <p>A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered
845
682
  * in an extension when invoked. Parameter values are specified in an extension association.
@@ -1121,33 +958,6 @@ export interface HostedConfigurationVersion {
1121
958
  */
1122
959
  KmsKeyArn?: string | undefined;
1123
960
  }
1124
- /**
1125
- * @public
1126
- * @enum
1127
- */
1128
- export declare const BytesMeasure: {
1129
- readonly KILOBYTES: "KILOBYTES";
1130
- };
1131
- /**
1132
- * @public
1133
- */
1134
- export type BytesMeasure = (typeof BytesMeasure)[keyof typeof BytesMeasure];
1135
- /**
1136
- * <p>The configuration size is too large.</p>
1137
- * @public
1138
- */
1139
- export declare class PayloadTooLargeException extends __BaseException {
1140
- readonly name: "PayloadTooLargeException";
1141
- readonly $fault: "client";
1142
- Message?: string | undefined;
1143
- Measure?: BytesMeasure | undefined;
1144
- Limit?: number | undefined;
1145
- Size?: number | undefined;
1146
- /**
1147
- * @internal
1148
- */
1149
- constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
1150
- }
1151
961
  /**
1152
962
  * @public
1153
963
  */
@@ -1158,19 +968,6 @@ export interface DeleteApplicationRequest {
1158
968
  */
1159
969
  ApplicationId: string | undefined;
1160
970
  }
1161
- /**
1162
- * @public
1163
- * @enum
1164
- */
1165
- export declare const DeletionProtectionCheck: {
1166
- readonly ACCOUNT_DEFAULT: "ACCOUNT_DEFAULT";
1167
- readonly APPLY: "APPLY";
1168
- readonly BYPASS: "BYPASS";
1169
- };
1170
- /**
1171
- * @public
1172
- */
1173
- export type DeletionProtectionCheck = (typeof DeletionProtectionCheck)[keyof typeof DeletionProtectionCheck];
1174
971
  /**
1175
972
  * @public
1176
973
  */
@@ -1445,37 +1242,6 @@ export interface AppliedExtension {
1445
1242
  */
1446
1243
  Parameters?: Record<string, string> | undefined;
1447
1244
  }
1448
- /**
1449
- * @public
1450
- * @enum
1451
- */
1452
- export declare const DeploymentEventType: {
1453
- readonly BAKE_TIME_STARTED: "BAKE_TIME_STARTED";
1454
- readonly DEPLOYMENT_COMPLETED: "DEPLOYMENT_COMPLETED";
1455
- readonly DEPLOYMENT_STARTED: "DEPLOYMENT_STARTED";
1456
- readonly PERCENTAGE_UPDATED: "PERCENTAGE_UPDATED";
1457
- readonly REVERT_COMPLETED: "REVERT_COMPLETED";
1458
- readonly ROLLBACK_COMPLETED: "ROLLBACK_COMPLETED";
1459
- readonly ROLLBACK_STARTED: "ROLLBACK_STARTED";
1460
- };
1461
- /**
1462
- * @public
1463
- */
1464
- export type DeploymentEventType = (typeof DeploymentEventType)[keyof typeof DeploymentEventType];
1465
- /**
1466
- * @public
1467
- * @enum
1468
- */
1469
- export declare const TriggeredBy: {
1470
- readonly APPCONFIG: "APPCONFIG";
1471
- readonly CLOUDWATCH_ALARM: "CLOUDWATCH_ALARM";
1472
- readonly INTERNAL_ERROR: "INTERNAL_ERROR";
1473
- readonly USER: "USER";
1474
- };
1475
- /**
1476
- * @public
1477
- */
1478
- export type TriggeredBy = (typeof TriggeredBy)[keyof typeof TriggeredBy];
1479
1245
  /**
1480
1246
  * <p>An object that describes a deployment event.</p>
1481
1247
  * @public
@@ -1523,23 +1289,6 @@ export interface DeploymentEvent {
1523
1289
  */
1524
1290
  OccurredAt?: Date | undefined;
1525
1291
  }
1526
- /**
1527
- * @public
1528
- * @enum
1529
- */
1530
- export declare const DeploymentState: {
1531
- readonly BAKING: "BAKING";
1532
- readonly COMPLETE: "COMPLETE";
1533
- readonly DEPLOYING: "DEPLOYING";
1534
- readonly REVERTED: "REVERTED";
1535
- readonly ROLLED_BACK: "ROLLED_BACK";
1536
- readonly ROLLING_BACK: "ROLLING_BACK";
1537
- readonly VALIDATING: "VALIDATING";
1538
- };
1539
- /**
1540
- * @public
1541
- */
1542
- export type DeploymentState = (typeof DeploymentState)[keyof typeof DeploymentState];
1543
1292
  /**
1544
1293
  * @public
1545
1294
  */
@@ -6,5 +6,7 @@ export { AppConfigExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./waiters";
9
- export * from "./models";
9
+ export * from "./models/enums";
10
+ export * from "./models/errors";
11
+ export * from "./models/models_0";
10
12
  export { AppConfigServiceException } from "./models/AppConfigServiceException";
@@ -0,0 +1,80 @@
1
+ export declare const ActionPoint: {
2
+ readonly AT_DEPLOYMENT_TICK: "AT_DEPLOYMENT_TICK";
3
+ readonly ON_DEPLOYMENT_BAKING: "ON_DEPLOYMENT_BAKING";
4
+ readonly ON_DEPLOYMENT_COMPLETE: "ON_DEPLOYMENT_COMPLETE";
5
+ readonly ON_DEPLOYMENT_ROLLED_BACK: "ON_DEPLOYMENT_ROLLED_BACK";
6
+ readonly ON_DEPLOYMENT_START: "ON_DEPLOYMENT_START";
7
+ readonly ON_DEPLOYMENT_STEP: "ON_DEPLOYMENT_STEP";
8
+ readonly PRE_CREATE_HOSTED_CONFIGURATION_VERSION: "PRE_CREATE_HOSTED_CONFIGURATION_VERSION";
9
+ readonly PRE_START_DEPLOYMENT: "PRE_START_DEPLOYMENT";
10
+ };
11
+ export type ActionPoint = (typeof ActionPoint)[keyof typeof ActionPoint];
12
+ export declare const BadRequestReason: {
13
+ readonly INVALID_CONFIGURATION: "InvalidConfiguration";
14
+ };
15
+ export type BadRequestReason =
16
+ (typeof BadRequestReason)[keyof typeof BadRequestReason];
17
+ export declare const ValidatorType: {
18
+ readonly JSON_SCHEMA: "JSON_SCHEMA";
19
+ readonly LAMBDA: "LAMBDA";
20
+ };
21
+ export type ValidatorType = (typeof ValidatorType)[keyof typeof ValidatorType];
22
+ export declare const GrowthType: {
23
+ readonly EXPONENTIAL: "EXPONENTIAL";
24
+ readonly LINEAR: "LINEAR";
25
+ };
26
+ export type GrowthType = (typeof GrowthType)[keyof typeof GrowthType];
27
+ export declare const ReplicateTo: {
28
+ readonly NONE: "NONE";
29
+ readonly SSM_DOCUMENT: "SSM_DOCUMENT";
30
+ };
31
+ export type ReplicateTo = (typeof ReplicateTo)[keyof typeof ReplicateTo];
32
+ export declare const EnvironmentState: {
33
+ readonly DEPLOYING: "DEPLOYING";
34
+ readonly READY_FOR_DEPLOYMENT: "READY_FOR_DEPLOYMENT";
35
+ readonly REVERTED: "REVERTED";
36
+ readonly ROLLED_BACK: "ROLLED_BACK";
37
+ readonly ROLLING_BACK: "ROLLING_BACK";
38
+ };
39
+ export type EnvironmentState =
40
+ (typeof EnvironmentState)[keyof typeof EnvironmentState];
41
+ export declare const BytesMeasure: {
42
+ readonly KILOBYTES: "KILOBYTES";
43
+ };
44
+ export type BytesMeasure = (typeof BytesMeasure)[keyof typeof BytesMeasure];
45
+ export declare const DeletionProtectionCheck: {
46
+ readonly ACCOUNT_DEFAULT: "ACCOUNT_DEFAULT";
47
+ readonly APPLY: "APPLY";
48
+ readonly BYPASS: "BYPASS";
49
+ };
50
+ export type DeletionProtectionCheck =
51
+ (typeof DeletionProtectionCheck)[keyof typeof DeletionProtectionCheck];
52
+ export declare const DeploymentEventType: {
53
+ readonly BAKE_TIME_STARTED: "BAKE_TIME_STARTED";
54
+ readonly DEPLOYMENT_COMPLETED: "DEPLOYMENT_COMPLETED";
55
+ readonly DEPLOYMENT_STARTED: "DEPLOYMENT_STARTED";
56
+ readonly PERCENTAGE_UPDATED: "PERCENTAGE_UPDATED";
57
+ readonly REVERT_COMPLETED: "REVERT_COMPLETED";
58
+ readonly ROLLBACK_COMPLETED: "ROLLBACK_COMPLETED";
59
+ readonly ROLLBACK_STARTED: "ROLLBACK_STARTED";
60
+ };
61
+ export type DeploymentEventType =
62
+ (typeof DeploymentEventType)[keyof typeof DeploymentEventType];
63
+ export declare const TriggeredBy: {
64
+ readonly APPCONFIG: "APPCONFIG";
65
+ readonly CLOUDWATCH_ALARM: "CLOUDWATCH_ALARM";
66
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
67
+ readonly USER: "USER";
68
+ };
69
+ export type TriggeredBy = (typeof TriggeredBy)[keyof typeof TriggeredBy];
70
+ export declare const DeploymentState: {
71
+ readonly BAKING: "BAKING";
72
+ readonly COMPLETE: "COMPLETE";
73
+ readonly DEPLOYING: "DEPLOYING";
74
+ readonly REVERTED: "REVERTED";
75
+ readonly ROLLED_BACK: "ROLLED_BACK";
76
+ readonly ROLLING_BACK: "ROLLING_BACK";
77
+ readonly VALIDATING: "VALIDATING";
78
+ };
79
+ export type DeploymentState =
80
+ (typeof DeploymentState)[keyof typeof DeploymentState];
@@ -0,0 +1,56 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
3
+ import { BadRequestReason, BytesMeasure } from "./enums";
4
+ import { BadRequestDetails } from "./models_0";
5
+ export declare class BadRequestException extends __BaseException {
6
+ readonly name: "BadRequestException";
7
+ readonly $fault: "client";
8
+ Message?: string | undefined;
9
+ Reason?: BadRequestReason | undefined;
10
+ Details?: BadRequestDetails | undefined;
11
+ constructor(
12
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
13
+ );
14
+ }
15
+ export declare class InternalServerException extends __BaseException {
16
+ readonly name: "InternalServerException";
17
+ readonly $fault: "server";
18
+ Message?: string | undefined;
19
+ constructor(
20
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
21
+ );
22
+ }
23
+ export declare class ServiceQuotaExceededException extends __BaseException {
24
+ readonly name: "ServiceQuotaExceededException";
25
+ readonly $fault: "client";
26
+ Message?: string | undefined;
27
+ constructor(
28
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
29
+ );
30
+ }
31
+ export declare class ResourceNotFoundException extends __BaseException {
32
+ readonly name: "ResourceNotFoundException";
33
+ readonly $fault: "client";
34
+ Message?: string | undefined;
35
+ ResourceName?: string | undefined;
36
+ constructor(
37
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
38
+ );
39
+ }
40
+ export declare class ConflictException extends __BaseException {
41
+ readonly name: "ConflictException";
42
+ readonly $fault: "client";
43
+ Message?: string | undefined;
44
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
45
+ }
46
+ export declare class PayloadTooLargeException extends __BaseException {
47
+ readonly name: "PayloadTooLargeException";
48
+ readonly $fault: "client";
49
+ Message?: string | undefined;
50
+ Measure?: BytesMeasure | undefined;
51
+ Limit?: number | undefined;
52
+ Size?: number | undefined;
53
+ constructor(
54
+ opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>
55
+ );
56
+ }