@distilled.cloud/aws 0.16.8 → 0.16.9
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/lib/services/acm.d.ts +22 -2
- package/lib/services/acm.d.ts.map +1 -1
- package/lib/services/acm.js +3 -3
- package/lib/services/acm.js.map +1 -1
- package/lib/services/cloudwatch-logs.d.ts +73 -13
- package/lib/services/cloudwatch-logs.d.ts.map +1 -1
- package/lib/services/cloudwatch-logs.js +13 -13
- package/lib/services/cloudwatch-logs.js.map +1 -1
- package/lib/services/dynamodb.d.ts +196 -28
- package/lib/services/dynamodb.d.ts.map +1 -1
- package/lib/services/dynamodb.js +33 -33
- package/lib/services/dynamodb.js.map +1 -1
- package/lib/services/ec2.d.ts +16 -5
- package/lib/services/ec2.d.ts.map +1 -1
- package/lib/services/ec2.js +7 -1
- package/lib/services/ec2.js.map +1 -1
- package/lib/services/ecr.d.ts +56 -8
- package/lib/services/ecr.d.ts.map +1 -1
- package/lib/services/ecr.js +9 -9
- package/lib/services/ecr.js.map +1 -1
- package/lib/services/ecs.d.ts +152 -28
- package/lib/services/ecs.d.ts.map +1 -1
- package/lib/services/ecs.js +28 -28
- package/lib/services/ecs.js.map +1 -1
- package/lib/services/eventbridge.d.ts +66 -14
- package/lib/services/eventbridge.d.ts.map +1 -1
- package/lib/services/eventbridge.js +18 -12
- package/lib/services/eventbridge.js.map +1 -1
- package/lib/services/iam.d.ts +24 -0
- package/lib/services/iam.d.ts.map +1 -1
- package/lib/services/iam.js +6 -6
- package/lib/services/iam.js.map +1 -1
- package/lib/services/kinesis.d.ts +90 -14
- package/lib/services/kinesis.d.ts.map +1 -1
- package/lib/services/kinesis.js +14 -14
- package/lib/services/kinesis.js.map +1 -1
- package/lib/services/rds.d.ts +44 -0
- package/lib/services/rds.d.ts.map +1 -1
- package/lib/services/rds.js +10 -10
- package/lib/services/rds.js.map +1 -1
- package/lib/services/route-53.d.ts +16 -0
- package/lib/services/route-53.d.ts.map +1 -1
- package/lib/services/route-53.js +2 -2
- package/lib/services/route-53.js.map +1 -1
- package/lib/services/s3.d.ts +58 -10
- package/lib/services/s3.d.ts.map +1 -1
- package/lib/services/s3.js +11 -11
- package/lib/services/s3.js.map +1 -1
- package/lib/services/scheduler.d.ts +4 -0
- package/lib/services/scheduler.d.ts.map +1 -1
- package/lib/services/scheduler.js +1 -1
- package/lib/services/scheduler.js.map +1 -1
- package/lib/services/secrets-manager.d.ts +68 -12
- package/lib/services/secrets-manager.d.ts.map +1 -1
- package/lib/services/secrets-manager.js +13 -12
- package/lib/services/secrets-manager.js.map +1 -1
- package/lib/services/sqs.d.ts +63 -7
- package/lib/services/sqs.d.ts.map +1 -1
- package/lib/services/sqs.js +11 -11
- package/lib/services/sqs.js.map +1 -1
- package/package.json +2 -2
- package/src/services/acm.ts +3 -3
- package/src/services/cloudwatch-logs.ts +13 -13
- package/src/services/dynamodb.ts +33 -33
- package/src/services/ec2.ts +13 -1
- package/src/services/ecr.ts +9 -9
- package/src/services/ecs.ts +28 -28
- package/src/services/eventbridge.ts +22 -12
- package/src/services/iam.ts +6 -6
- package/src/services/kinesis.ts +14 -14
- package/src/services/rds.ts +10 -10
- package/src/services/route-53.ts +2 -2
- package/src/services/s3.ts +11 -11
- package/src/services/scheduler.ts +1 -1
- package/src/services/secrets-manager.ts +13 -12
- package/src/services/sqs.ts +11 -11
package/src/services/ecr.ts
CHANGED
|
@@ -3878,19 +3878,19 @@ export const ValidatePullThroughCacheRuleResponse =
|
|
|
3878
3878
|
export class InvalidParameterException extends S.TaggedErrorClass<InvalidParameterException>()(
|
|
3879
3879
|
"InvalidParameterException",
|
|
3880
3880
|
{ message: S.optional(S.String) },
|
|
3881
|
-
) {}
|
|
3881
|
+
).pipe(C.withBadRequestError) {}
|
|
3882
3882
|
export class RepositoryNotFoundException extends S.TaggedErrorClass<RepositoryNotFoundException>()(
|
|
3883
3883
|
"RepositoryNotFoundException",
|
|
3884
3884
|
{ message: S.optional(S.String) },
|
|
3885
|
-
) {}
|
|
3885
|
+
).pipe(C.withNotFoundError) {}
|
|
3886
3886
|
export class ServerException extends S.TaggedErrorClass<ServerException>()(
|
|
3887
3887
|
"ServerException",
|
|
3888
3888
|
{ message: S.optional(S.String) },
|
|
3889
|
-
) {}
|
|
3889
|
+
).pipe(C.withServerError, C.withRetryableError) {}
|
|
3890
3890
|
export class LimitExceededException extends S.TaggedErrorClass<LimitExceededException>()(
|
|
3891
3891
|
"LimitExceededException",
|
|
3892
3892
|
{ message: S.optional(S.String) },
|
|
3893
|
-
) {}
|
|
3893
|
+
).pipe(C.withQuotaError) {}
|
|
3894
3894
|
export class UnableToGetUpstreamImageException extends S.TaggedErrorClass<UnableToGetUpstreamImageException>()(
|
|
3895
3895
|
"UnableToGetUpstreamImageException",
|
|
3896
3896
|
{ message: S.optional(S.String) },
|
|
@@ -3950,11 +3950,11 @@ export class InvalidTagParameterException extends S.TaggedErrorClass<InvalidTagP
|
|
|
3950
3950
|
export class RepositoryAlreadyExistsException extends S.TaggedErrorClass<RepositoryAlreadyExistsException>()(
|
|
3951
3951
|
"RepositoryAlreadyExistsException",
|
|
3952
3952
|
{ message: S.optional(S.String) },
|
|
3953
|
-
).pipe(C.withAlreadyExistsError) {}
|
|
3953
|
+
).pipe(C.withConflictError, C.withAlreadyExistsError) {}
|
|
3954
3954
|
export class TooManyTagsException extends S.TaggedErrorClass<TooManyTagsException>()(
|
|
3955
3955
|
"TooManyTagsException",
|
|
3956
3956
|
{ message: S.optional(S.String) },
|
|
3957
|
-
) {}
|
|
3957
|
+
).pipe(C.withQuotaError, C.withBadRequestError) {}
|
|
3958
3958
|
export class TemplateAlreadyExistsException extends S.TaggedErrorClass<TemplateAlreadyExistsException>()(
|
|
3959
3959
|
"TemplateAlreadyExistsException",
|
|
3960
3960
|
{ message: S.optional(S.String) },
|
|
@@ -3962,7 +3962,7 @@ export class TemplateAlreadyExistsException extends S.TaggedErrorClass<TemplateA
|
|
|
3962
3962
|
export class LifecyclePolicyNotFoundException extends S.TaggedErrorClass<LifecyclePolicyNotFoundException>()(
|
|
3963
3963
|
"LifecyclePolicyNotFoundException",
|
|
3964
3964
|
{ message: S.optional(S.String) },
|
|
3965
|
-
) {}
|
|
3965
|
+
).pipe(C.withNotFoundError) {}
|
|
3966
3966
|
export class PullThroughCacheRuleNotFoundException extends S.TaggedErrorClass<PullThroughCacheRuleNotFoundException>()(
|
|
3967
3967
|
"PullThroughCacheRuleNotFoundException",
|
|
3968
3968
|
{ message: S.optional(S.String) },
|
|
@@ -3974,7 +3974,7 @@ export class RegistryPolicyNotFoundException extends S.TaggedErrorClass<Registry
|
|
|
3974
3974
|
export class RepositoryNotEmptyException extends S.TaggedErrorClass<RepositoryNotEmptyException>()(
|
|
3975
3975
|
"RepositoryNotEmptyException",
|
|
3976
3976
|
{ message: S.optional(S.String) },
|
|
3977
|
-
) {}
|
|
3977
|
+
).pipe(C.withConflictError, C.withDependencyViolationError) {}
|
|
3978
3978
|
export class TemplateNotFoundException extends S.TaggedErrorClass<TemplateNotFoundException>()(
|
|
3979
3979
|
"TemplateNotFoundException",
|
|
3980
3980
|
{ message: S.optional(S.String) },
|
|
@@ -3982,7 +3982,7 @@ export class TemplateNotFoundException extends S.TaggedErrorClass<TemplateNotFou
|
|
|
3982
3982
|
export class RepositoryPolicyNotFoundException extends S.TaggedErrorClass<RepositoryPolicyNotFoundException>()(
|
|
3983
3983
|
"RepositoryPolicyNotFoundException",
|
|
3984
3984
|
{ message: S.optional(S.String) },
|
|
3985
|
-
) {}
|
|
3985
|
+
).pipe(C.withNotFoundError) {}
|
|
3986
3986
|
export class SigningConfigurationNotFoundException extends S.TaggedErrorClass<SigningConfigurationNotFoundException>()(
|
|
3987
3987
|
"SigningConfigurationNotFoundException",
|
|
3988
3988
|
{ message: S.optional(S.String) },
|
package/src/services/ecs.ts
CHANGED
|
@@ -7258,79 +7258,79 @@ export class AccessDeniedException extends S.TaggedErrorClass<AccessDeniedExcept
|
|
|
7258
7258
|
export class ClientException extends S.TaggedErrorClass<ClientException>()(
|
|
7259
7259
|
"ClientException",
|
|
7260
7260
|
{ message: S.optional(S.String) },
|
|
7261
|
-
) {}
|
|
7261
|
+
).pipe(C.withBadRequestError) {}
|
|
7262
7262
|
export class InvalidParameterException extends S.TaggedErrorClass<InvalidParameterException>()(
|
|
7263
7263
|
"InvalidParameterException",
|
|
7264
7264
|
{ message: S.optional(S.String) },
|
|
7265
|
-
) {}
|
|
7265
|
+
).pipe(C.withBadRequestError) {}
|
|
7266
7266
|
export class ServerException extends S.TaggedErrorClass<ServerException>()(
|
|
7267
7267
|
"ServerException",
|
|
7268
7268
|
{ message: S.optional(S.String) },
|
|
7269
|
-
) {}
|
|
7269
|
+
).pipe(C.withServerError, C.withRetryableError) {}
|
|
7270
7270
|
export class NamespaceNotFoundException extends S.TaggedErrorClass<NamespaceNotFoundException>()(
|
|
7271
7271
|
"NamespaceNotFoundException",
|
|
7272
7272
|
{ message: S.optional(S.String) },
|
|
7273
|
-
) {}
|
|
7273
|
+
).pipe(C.withNotFoundError) {}
|
|
7274
7274
|
export class ClusterNotFoundException extends S.TaggedErrorClass<ClusterNotFoundException>()(
|
|
7275
7275
|
"ClusterNotFoundException",
|
|
7276
7276
|
{ message: S.optional(S.String) },
|
|
7277
|
-
) {}
|
|
7277
|
+
).pipe(C.withNotFoundError) {}
|
|
7278
7278
|
export class LimitExceededException extends S.TaggedErrorClass<LimitExceededException>()(
|
|
7279
7279
|
"LimitExceededException",
|
|
7280
7280
|
{ message: S.optional(S.String) },
|
|
7281
|
-
) {}
|
|
7281
|
+
).pipe(C.withQuotaError) {}
|
|
7282
7282
|
export class ResourceNotFoundException extends S.TaggedErrorClass<ResourceNotFoundException>()(
|
|
7283
7283
|
"ResourceNotFoundException",
|
|
7284
7284
|
{ message: S.optional(S.String) },
|
|
7285
|
-
) {}
|
|
7285
|
+
).pipe(C.withNotFoundError) {}
|
|
7286
7286
|
export class UnsupportedFeatureException extends S.TaggedErrorClass<UnsupportedFeatureException>()(
|
|
7287
7287
|
"UnsupportedFeatureException",
|
|
7288
7288
|
{ message: S.optional(S.String) },
|
|
7289
|
-
) {}
|
|
7289
|
+
).pipe(C.withBadRequestError) {}
|
|
7290
7290
|
export class UpdateInProgressException extends S.TaggedErrorClass<UpdateInProgressException>()(
|
|
7291
7291
|
"UpdateInProgressException",
|
|
7292
7292
|
{ message: S.optional(S.String) },
|
|
7293
|
-
) {}
|
|
7293
|
+
).pipe(C.withConflictError, C.withRetryableError) {}
|
|
7294
7294
|
export class ClusterContainsCapacityProviderException extends S.TaggedErrorClass<ClusterContainsCapacityProviderException>()(
|
|
7295
7295
|
"ClusterContainsCapacityProviderException",
|
|
7296
7296
|
{ message: S.optional(S.String) },
|
|
7297
|
-
) {}
|
|
7297
|
+
).pipe(C.withDependencyViolationError) {}
|
|
7298
7298
|
export class ClusterContainsContainerInstancesException extends S.TaggedErrorClass<ClusterContainsContainerInstancesException>()(
|
|
7299
7299
|
"ClusterContainsContainerInstancesException",
|
|
7300
7300
|
{ message: S.optional(S.String) },
|
|
7301
|
-
) {}
|
|
7301
|
+
).pipe(C.withDependencyViolationError) {}
|
|
7302
7302
|
export class ClusterContainsServicesException extends S.TaggedErrorClass<ClusterContainsServicesException>()(
|
|
7303
7303
|
"ClusterContainsServicesException",
|
|
7304
7304
|
{ message: S.optional(S.String) },
|
|
7305
|
-
) {}
|
|
7305
|
+
).pipe(C.withDependencyViolationError) {}
|
|
7306
7306
|
export class ClusterContainsTasksException extends S.TaggedErrorClass<ClusterContainsTasksException>()(
|
|
7307
7307
|
"ClusterContainsTasksException",
|
|
7308
7308
|
{ message: S.optional(S.String) },
|
|
7309
|
-
) {}
|
|
7309
|
+
).pipe(C.withDependencyViolationError) {}
|
|
7310
7310
|
export class ResourceInUseException extends S.TaggedErrorClass<ResourceInUseException>()(
|
|
7311
7311
|
"ResourceInUseException",
|
|
7312
7312
|
{ message: S.optional(S.String) },
|
|
7313
|
-
) {}
|
|
7313
|
+
).pipe(C.withConflictError, C.withRetryableError) {}
|
|
7314
7314
|
export class TargetNotConnectedException extends S.TaggedErrorClass<TargetNotConnectedException>()(
|
|
7315
7315
|
"TargetNotConnectedException",
|
|
7316
7316
|
{ message: S.optional(S.String) },
|
|
7317
|
-
) {}
|
|
7317
|
+
).pipe(C.withConflictError) {}
|
|
7318
7318
|
export class TargetNotFoundException extends S.TaggedErrorClass<TargetNotFoundException>()(
|
|
7319
7319
|
"TargetNotFoundException",
|
|
7320
7320
|
{ message: S.optional(S.String) },
|
|
7321
|
-
) {}
|
|
7321
|
+
).pipe(C.withNotFoundError) {}
|
|
7322
7322
|
export class ServiceNotFoundException extends S.TaggedErrorClass<ServiceNotFoundException>()(
|
|
7323
7323
|
"ServiceNotFoundException",
|
|
7324
7324
|
{ message: S.optional(S.String) },
|
|
7325
|
-
) {}
|
|
7325
|
+
).pipe(C.withNotFoundError) {}
|
|
7326
7326
|
export class AttributeLimitExceededException extends S.TaggedErrorClass<AttributeLimitExceededException>()(
|
|
7327
7327
|
"AttributeLimitExceededException",
|
|
7328
7328
|
{ message: S.optional(S.String) },
|
|
7329
|
-
) {}
|
|
7329
|
+
).pipe(C.withQuotaError) {}
|
|
7330
7330
|
export class MissingVersionException extends S.TaggedErrorClass<MissingVersionException>()(
|
|
7331
7331
|
"MissingVersionException",
|
|
7332
7332
|
{ message: S.optional(S.String) },
|
|
7333
|
-
) {}
|
|
7333
|
+
).pipe(C.withBadRequestError) {}
|
|
7334
7334
|
export class NoUpdateAvailableException extends S.TaggedErrorClass<NoUpdateAvailableException>()(
|
|
7335
7335
|
"NoUpdateAvailableException",
|
|
7336
7336
|
{ message: S.optional(S.String) },
|
|
@@ -7338,39 +7338,39 @@ export class NoUpdateAvailableException extends S.TaggedErrorClass<NoUpdateAvail
|
|
|
7338
7338
|
export class PlatformUnknownException extends S.TaggedErrorClass<PlatformUnknownException>()(
|
|
7339
7339
|
"PlatformUnknownException",
|
|
7340
7340
|
{ message: S.optional(S.String) },
|
|
7341
|
-
) {}
|
|
7341
|
+
).pipe(C.withBadRequestError) {}
|
|
7342
7342
|
export class DaemonNotActiveException extends S.TaggedErrorClass<DaemonNotActiveException>()(
|
|
7343
7343
|
"DaemonNotActiveException",
|
|
7344
7344
|
{ message: S.optional(S.String) },
|
|
7345
|
-
) {}
|
|
7345
|
+
).pipe(C.withConflictError) {}
|
|
7346
7346
|
export class DaemonNotFoundException extends S.TaggedErrorClass<DaemonNotFoundException>()(
|
|
7347
7347
|
"DaemonNotFoundException",
|
|
7348
7348
|
{ message: S.optional(S.String) },
|
|
7349
|
-
) {}
|
|
7349
|
+
).pipe(C.withNotFoundError) {}
|
|
7350
7350
|
export class ServiceNotActiveException extends S.TaggedErrorClass<ServiceNotActiveException>()(
|
|
7351
7351
|
"ServiceNotActiveException",
|
|
7352
7352
|
{ message: S.optional(S.String) },
|
|
7353
|
-
) {}
|
|
7353
|
+
).pipe(C.withConflictError) {}
|
|
7354
7354
|
export class TaskSetNotFoundException extends S.TaggedErrorClass<TaskSetNotFoundException>()(
|
|
7355
7355
|
"TaskSetNotFoundException",
|
|
7356
7356
|
{ message: S.optional(S.String) },
|
|
7357
|
-
) {}
|
|
7357
|
+
).pipe(C.withNotFoundError) {}
|
|
7358
7358
|
export class PlatformTaskDefinitionIncompatibilityException extends S.TaggedErrorClass<PlatformTaskDefinitionIncompatibilityException>()(
|
|
7359
7359
|
"PlatformTaskDefinitionIncompatibilityException",
|
|
7360
7360
|
{ message: S.optional(S.String) },
|
|
7361
|
-
) {}
|
|
7361
|
+
).pipe(C.withBadRequestError) {}
|
|
7362
7362
|
export class ConflictException extends S.TaggedErrorClass<ConflictException>()(
|
|
7363
7363
|
"ConflictException",
|
|
7364
7364
|
{ resourceIds: S.optional(ResourceIds), message: S.optional(S.String) },
|
|
7365
|
-
) {}
|
|
7365
|
+
).pipe(C.withConflictError) {}
|
|
7366
7366
|
export class ServiceDeploymentNotFoundException extends S.TaggedErrorClass<ServiceDeploymentNotFoundException>()(
|
|
7367
7367
|
"ServiceDeploymentNotFoundException",
|
|
7368
7368
|
{ message: S.optional(S.String) },
|
|
7369
|
-
) {}
|
|
7369
|
+
).pipe(C.withNotFoundError) {}
|
|
7370
7370
|
export class BlockedException extends S.TaggedErrorClass<BlockedException>()(
|
|
7371
7371
|
"BlockedException",
|
|
7372
7372
|
{ message: S.optional(S.String) },
|
|
7373
|
-
) {}
|
|
7373
|
+
).pipe(C.withBadRequestError) {}
|
|
7374
7374
|
|
|
7375
7375
|
//# Operations
|
|
7376
7376
|
export type DeleteAccountSettingError =
|
|
@@ -3697,19 +3697,19 @@ export const UpdateEventBusResponse = /*@__PURE__*/ /*#__PURE__*/ S.suspend(
|
|
|
3697
3697
|
export class ConcurrentModificationException extends S.TaggedErrorClass<ConcurrentModificationException>()(
|
|
3698
3698
|
"ConcurrentModificationException",
|
|
3699
3699
|
{ message: S.optional(S.String) },
|
|
3700
|
-
) {}
|
|
3700
|
+
).pipe(C.withConflictError, C.withRetryableError) {}
|
|
3701
3701
|
export class InternalException extends S.TaggedErrorClass<InternalException>()(
|
|
3702
3702
|
"InternalException",
|
|
3703
3703
|
{ message: S.optional(S.String) },
|
|
3704
|
-
) {}
|
|
3704
|
+
).pipe(C.withServerError, C.withRetryableError) {}
|
|
3705
3705
|
export class InvalidStateException extends S.TaggedErrorClass<InvalidStateException>()(
|
|
3706
3706
|
"InvalidStateException",
|
|
3707
3707
|
{ message: S.optional(S.String) },
|
|
3708
|
-
) {}
|
|
3708
|
+
).pipe(C.withConflictError) {}
|
|
3709
3709
|
export class OperationDisabledException extends S.TaggedErrorClass<OperationDisabledException>()(
|
|
3710
3710
|
"OperationDisabledException",
|
|
3711
3711
|
{ message: S.optional(S.String) },
|
|
3712
|
-
) {}
|
|
3712
|
+
).pipe(C.withBadRequestError) {}
|
|
3713
3713
|
export class ResourceNotFoundException extends S.TaggedErrorClass<ResourceNotFoundException>()(
|
|
3714
3714
|
"ResourceNotFoundException",
|
|
3715
3715
|
{ message: S.optional(S.String) },
|
|
@@ -3717,11 +3717,11 @@ export class ResourceNotFoundException extends S.TaggedErrorClass<ResourceNotFou
|
|
|
3717
3717
|
export class IllegalStatusException extends S.TaggedErrorClass<IllegalStatusException>()(
|
|
3718
3718
|
"IllegalStatusException",
|
|
3719
3719
|
{ message: S.optional(S.String) },
|
|
3720
|
-
) {}
|
|
3720
|
+
).pipe(C.withConflictError) {}
|
|
3721
3721
|
export class LimitExceededException extends S.TaggedErrorClass<LimitExceededException>()(
|
|
3722
3722
|
"LimitExceededException",
|
|
3723
3723
|
{ message: S.optional(S.String) },
|
|
3724
|
-
) {}
|
|
3724
|
+
).pipe(C.withQuotaError) {}
|
|
3725
3725
|
export class ResourceAlreadyExistsException extends S.TaggedErrorClass<ResourceAlreadyExistsException>()(
|
|
3726
3726
|
"ResourceAlreadyExistsException",
|
|
3727
3727
|
{ message: S.optional(S.String) },
|
|
@@ -3729,7 +3729,7 @@ export class ResourceAlreadyExistsException extends S.TaggedErrorClass<ResourceA
|
|
|
3729
3729
|
export class InvalidEventPatternException extends S.TaggedErrorClass<InvalidEventPatternException>()(
|
|
3730
3730
|
"InvalidEventPatternException",
|
|
3731
3731
|
{ message: S.optional(S.String) },
|
|
3732
|
-
) {}
|
|
3732
|
+
).pipe(C.withBadRequestError) {}
|
|
3733
3733
|
export class AccessDeniedException extends S.TaggedErrorClass<AccessDeniedException>()(
|
|
3734
3734
|
"AccessDeniedException",
|
|
3735
3735
|
{ message: S.optional(S.String) },
|
|
@@ -3737,15 +3737,15 @@ export class AccessDeniedException extends S.TaggedErrorClass<AccessDeniedExcept
|
|
|
3737
3737
|
export class ThrottlingException extends S.TaggedErrorClass<ThrottlingException>()(
|
|
3738
3738
|
"ThrottlingException",
|
|
3739
3739
|
{ message: S.optional(S.String) },
|
|
3740
|
-
) {}
|
|
3740
|
+
).pipe(C.withThrottlingError, C.withRetryableError) {}
|
|
3741
3741
|
export class ManagedRuleException extends S.TaggedErrorClass<ManagedRuleException>()(
|
|
3742
3742
|
"ManagedRuleException",
|
|
3743
3743
|
{ message: S.optional(S.String) },
|
|
3744
|
-
) {}
|
|
3744
|
+
).pipe(C.withBadRequestError) {}
|
|
3745
3745
|
export class PolicyLengthExceededException extends S.TaggedErrorClass<PolicyLengthExceededException>()(
|
|
3746
3746
|
"PolicyLengthExceededException",
|
|
3747
3747
|
{ message: S.optional(S.String) },
|
|
3748
|
-
) {}
|
|
3748
|
+
).pipe(C.withQuotaError) {}
|
|
3749
3749
|
|
|
3750
3750
|
//# Operations
|
|
3751
3751
|
export type ActivateEventSourceError =
|
|
@@ -4167,6 +4167,7 @@ export const deleteEndpoint: API.OperationMethod<
|
|
|
4167
4167
|
export type DeleteEventBusError =
|
|
4168
4168
|
| ConcurrentModificationException
|
|
4169
4169
|
| InternalException
|
|
4170
|
+
| ResourceNotFoundException
|
|
4170
4171
|
| CommonErrors;
|
|
4171
4172
|
/**
|
|
4172
4173
|
* Deletes the specified custom event bus or partner event bus. All rules associated with
|
|
@@ -4180,7 +4181,11 @@ export const deleteEventBus: API.OperationMethod<
|
|
|
4180
4181
|
> = /*@__PURE__*/ /*#__PURE__*/ API.make(() => ({
|
|
4181
4182
|
input: DeleteEventBusRequest,
|
|
4182
4183
|
output: DeleteEventBusResponse,
|
|
4183
|
-
errors: [
|
|
4184
|
+
errors: [
|
|
4185
|
+
ConcurrentModificationException,
|
|
4186
|
+
InternalException,
|
|
4187
|
+
ResourceNotFoundException,
|
|
4188
|
+
],
|
|
4184
4189
|
}));
|
|
4185
4190
|
export type DeletePartnerEventSourceError =
|
|
4186
4191
|
| ConcurrentModificationException
|
|
@@ -4696,6 +4701,7 @@ export const listRules: API.OperationMethod<
|
|
|
4696
4701
|
export type ListTagsForResourceError =
|
|
4697
4702
|
| InternalException
|
|
4698
4703
|
| ResourceNotFoundException
|
|
4704
|
+
| ThrottlingException
|
|
4699
4705
|
| CommonErrors;
|
|
4700
4706
|
/**
|
|
4701
4707
|
* Displays the tags associated with an EventBridge resource. In EventBridge, rules and event
|
|
@@ -4709,7 +4715,7 @@ export const listTagsForResource: API.OperationMethod<
|
|
|
4709
4715
|
> = /*@__PURE__*/ /*#__PURE__*/ API.make(() => ({
|
|
4710
4716
|
input: ListTagsForResourceRequest,
|
|
4711
4717
|
output: ListTagsForResourceResponse,
|
|
4712
|
-
errors: [InternalException, ResourceNotFoundException],
|
|
4718
|
+
errors: [InternalException, ResourceNotFoundException, ThrottlingException],
|
|
4713
4719
|
}));
|
|
4714
4720
|
export type ListTargetsByRuleError =
|
|
4715
4721
|
| InternalException
|
|
@@ -5128,6 +5134,7 @@ export type TagResourceError =
|
|
|
5128
5134
|
| InternalException
|
|
5129
5135
|
| ManagedRuleException
|
|
5130
5136
|
| ResourceNotFoundException
|
|
5137
|
+
| ThrottlingException
|
|
5131
5138
|
| CommonErrors;
|
|
5132
5139
|
/**
|
|
5133
5140
|
* Assigns one or more tags (key-value pairs) to the specified EventBridge resource. Tags can
|
|
@@ -5158,6 +5165,7 @@ export const tagResource: API.OperationMethod<
|
|
|
5158
5165
|
InternalException,
|
|
5159
5166
|
ManagedRuleException,
|
|
5160
5167
|
ResourceNotFoundException,
|
|
5168
|
+
ThrottlingException,
|
|
5161
5169
|
],
|
|
5162
5170
|
}));
|
|
5163
5171
|
export type TestEventPatternError =
|
|
@@ -5187,6 +5195,7 @@ export type UntagResourceError =
|
|
|
5187
5195
|
| InternalException
|
|
5188
5196
|
| ManagedRuleException
|
|
5189
5197
|
| ResourceNotFoundException
|
|
5198
|
+
| ThrottlingException
|
|
5190
5199
|
| CommonErrors;
|
|
5191
5200
|
/**
|
|
5192
5201
|
* Removes one or more tags from the specified EventBridge resource. In Amazon EventBridge, rules and event buses can be tagged.
|
|
@@ -5204,6 +5213,7 @@ export const untagResource: API.OperationMethod<
|
|
|
5204
5213
|
InternalException,
|
|
5205
5214
|
ManagedRuleException,
|
|
5206
5215
|
ResourceNotFoundException,
|
|
5216
|
+
ThrottlingException,
|
|
5207
5217
|
],
|
|
5208
5218
|
}));
|
|
5209
5219
|
export type UpdateApiDestinationError =
|
package/src/services/iam.ts
CHANGED
|
@@ -7310,17 +7310,17 @@ export class ConcurrentModificationException extends S.TaggedErrorClass<Concurre
|
|
|
7310
7310
|
"ConcurrentModificationException",
|
|
7311
7311
|
{ message: S.optional(S.String) },
|
|
7312
7312
|
T.AwsQueryError({ code: "ConcurrentModification", httpResponseCode: 409 }),
|
|
7313
|
-
).pipe(C.withConflictError) {}
|
|
7313
|
+
).pipe(C.withConflictError, C.withRetryableError) {}
|
|
7314
7314
|
export class NoSuchEntityException extends S.TaggedErrorClass<NoSuchEntityException>()(
|
|
7315
7315
|
"NoSuchEntityException",
|
|
7316
7316
|
{ message: S.optional(S.String) },
|
|
7317
7317
|
T.AwsQueryError({ code: "NoSuchEntity", httpResponseCode: 404 }),
|
|
7318
|
-
).pipe(C.withBadRequestError) {}
|
|
7318
|
+
).pipe(C.withBadRequestError, C.withNotFoundError) {}
|
|
7319
7319
|
export class ServiceFailureException extends S.TaggedErrorClass<ServiceFailureException>()(
|
|
7320
7320
|
"ServiceFailureException",
|
|
7321
7321
|
{ message: S.optional(S.String) },
|
|
7322
7322
|
T.AwsQueryError({ code: "ServiceFailure", httpResponseCode: 500 }),
|
|
7323
|
-
).pipe(C.withServerError) {}
|
|
7323
|
+
).pipe(C.withServerError, C.withRetryableError) {}
|
|
7324
7324
|
export class InvalidInputException extends S.TaggedErrorClass<InvalidInputException>()(
|
|
7325
7325
|
"InvalidInputException",
|
|
7326
7326
|
{ message: S.optional(S.String) },
|
|
@@ -7330,7 +7330,7 @@ export class LimitExceededException extends S.TaggedErrorClass<LimitExceededExce
|
|
|
7330
7330
|
"LimitExceededException",
|
|
7331
7331
|
{ message: S.optional(S.String) },
|
|
7332
7332
|
T.AwsQueryError({ code: "LimitExceeded", httpResponseCode: 409 }),
|
|
7333
|
-
).pipe(C.withConflictError) {}
|
|
7333
|
+
).pipe(C.withConflictError, C.withQuotaError) {}
|
|
7334
7334
|
export class EntityAlreadyExistsException extends S.TaggedErrorClass<EntityAlreadyExistsException>()(
|
|
7335
7335
|
"EntityAlreadyExistsException",
|
|
7336
7336
|
{ message: S.optional(S.String) },
|
|
@@ -7353,7 +7353,7 @@ export class EntityTemporarilyUnmodifiableException extends S.TaggedErrorClass<E
|
|
|
7353
7353
|
code: "EntityTemporarilyUnmodifiable",
|
|
7354
7354
|
httpResponseCode: 409,
|
|
7355
7355
|
}),
|
|
7356
|
-
).pipe(C.withConflictError) {}
|
|
7356
|
+
).pipe(C.withConflictError, C.withRetryableError) {}
|
|
7357
7357
|
export class InvalidUserTypeException extends S.TaggedErrorClass<InvalidUserTypeException>()(
|
|
7358
7358
|
"InvalidUserTypeException",
|
|
7359
7359
|
{ message: S.optional(S.String) },
|
|
@@ -7456,7 +7456,7 @@ export class UnrecognizedPublicKeyEncodingException extends S.TaggedErrorClass<U
|
|
|
7456
7456
|
export class RequestLimitExceeded extends S.TaggedErrorClass<RequestLimitExceeded>()(
|
|
7457
7457
|
"RequestLimitExceeded",
|
|
7458
7458
|
{},
|
|
7459
|
-
).pipe(C.withThrottlingError) {}
|
|
7459
|
+
).pipe(C.withThrottlingError, C.withRetryableError) {}
|
|
7460
7460
|
export class InvalidInput extends S.TaggedErrorClass<InvalidInput>()(
|
|
7461
7461
|
"InvalidInput",
|
|
7462
7462
|
{},
|
package/src/services/kinesis.ts
CHANGED
|
@@ -2681,31 +2681,31 @@ export class AccessDeniedException extends S.TaggedErrorClass<AccessDeniedExcept
|
|
|
2681
2681
|
export class InvalidArgumentException extends S.TaggedErrorClass<InvalidArgumentException>()(
|
|
2682
2682
|
"InvalidArgumentException",
|
|
2683
2683
|
{ message: S.optional(S.String) },
|
|
2684
|
-
) {}
|
|
2684
|
+
).pipe(C.withBadRequestError) {}
|
|
2685
2685
|
export class LimitExceededException extends S.TaggedErrorClass<LimitExceededException>()(
|
|
2686
2686
|
"LimitExceededException",
|
|
2687
2687
|
{ message: S.optional(S.String) },
|
|
2688
|
-
) {}
|
|
2688
|
+
).pipe(C.withQuotaError, C.withRetryableError) {}
|
|
2689
2689
|
export class ResourceInUseException extends S.TaggedErrorClass<ResourceInUseException>()(
|
|
2690
2690
|
"ResourceInUseException",
|
|
2691
2691
|
{ message: S.optional(S.String) },
|
|
2692
|
-
) {}
|
|
2692
|
+
).pipe(C.withConflictError, C.withRetryableError) {}
|
|
2693
2693
|
export class ResourceNotFoundException extends S.TaggedErrorClass<ResourceNotFoundException>()(
|
|
2694
2694
|
"ResourceNotFoundException",
|
|
2695
2695
|
{ message: S.optional(S.String) },
|
|
2696
|
-
) {}
|
|
2696
|
+
).pipe(C.withNotFoundError) {}
|
|
2697
2697
|
export class ValidationException extends S.TaggedErrorClass<ValidationException>()(
|
|
2698
2698
|
"ValidationException",
|
|
2699
2699
|
{ message: S.optional(S.String) },
|
|
2700
|
-
) {}
|
|
2700
|
+
).pipe(C.withBadRequestError) {}
|
|
2701
2701
|
export class ExpiredIteratorException extends S.TaggedErrorClass<ExpiredIteratorException>()(
|
|
2702
2702
|
"ExpiredIteratorException",
|
|
2703
2703
|
{ message: S.optional(S.String) },
|
|
2704
|
-
) {}
|
|
2704
|
+
).pipe(C.withBadRequestError) {}
|
|
2705
2705
|
export class InternalFailureException extends S.TaggedErrorClass<InternalFailureException>()(
|
|
2706
2706
|
"InternalFailureException",
|
|
2707
2707
|
{ message: S.optional(S.String) },
|
|
2708
|
-
) {}
|
|
2708
|
+
).pipe(C.withServerError, C.withRetryableError) {}
|
|
2709
2709
|
export class KMSAccessDeniedException extends S.TaggedErrorClass<KMSAccessDeniedException>()(
|
|
2710
2710
|
"KMSAccessDeniedException",
|
|
2711
2711
|
{ message: S.optional(S.String) },
|
|
@@ -2713,31 +2713,31 @@ export class KMSAccessDeniedException extends S.TaggedErrorClass<KMSAccessDenied
|
|
|
2713
2713
|
export class KMSDisabledException extends S.TaggedErrorClass<KMSDisabledException>()(
|
|
2714
2714
|
"KMSDisabledException",
|
|
2715
2715
|
{ message: S.optional(S.String) },
|
|
2716
|
-
) {}
|
|
2716
|
+
).pipe(C.withBadRequestError) {}
|
|
2717
2717
|
export class KMSInvalidStateException extends S.TaggedErrorClass<KMSInvalidStateException>()(
|
|
2718
2718
|
"KMSInvalidStateException",
|
|
2719
2719
|
{ message: S.optional(S.String) },
|
|
2720
|
-
) {}
|
|
2720
|
+
).pipe(C.withBadRequestError) {}
|
|
2721
2721
|
export class KMSNotFoundException extends S.TaggedErrorClass<KMSNotFoundException>()(
|
|
2722
2722
|
"KMSNotFoundException",
|
|
2723
2723
|
{ message: S.optional(S.String) },
|
|
2724
|
-
) {}
|
|
2724
|
+
).pipe(C.withBadRequestError) {}
|
|
2725
2725
|
export class KMSOptInRequired extends S.TaggedErrorClass<KMSOptInRequired>()(
|
|
2726
2726
|
"KMSOptInRequired",
|
|
2727
2727
|
{ message: S.optional(S.String) },
|
|
2728
|
-
) {}
|
|
2728
|
+
).pipe(C.withBadRequestError) {}
|
|
2729
2729
|
export class KMSThrottlingException extends S.TaggedErrorClass<KMSThrottlingException>()(
|
|
2730
2730
|
"KMSThrottlingException",
|
|
2731
2731
|
{ message: S.optional(S.String) },
|
|
2732
|
-
) {}
|
|
2732
|
+
).pipe(C.withThrottlingError, C.withRetryableError) {}
|
|
2733
2733
|
export class ProvisionedThroughputExceededException extends S.TaggedErrorClass<ProvisionedThroughputExceededException>()(
|
|
2734
2734
|
"ProvisionedThroughputExceededException",
|
|
2735
2735
|
{ message: S.optional(S.String) },
|
|
2736
|
-
) {}
|
|
2736
|
+
).pipe(C.withThrottlingError, C.withRetryableError) {}
|
|
2737
2737
|
export class ExpiredNextTokenException extends S.TaggedErrorClass<ExpiredNextTokenException>()(
|
|
2738
2738
|
"ExpiredNextTokenException",
|
|
2739
2739
|
{ message: S.optional(S.String) },
|
|
2740
|
-
) {}
|
|
2740
|
+
).pipe(C.withBadRequestError) {}
|
|
2741
2741
|
|
|
2742
2742
|
//# Operations
|
|
2743
2743
|
export type AddTagsToStreamError =
|
package/src/services/rds.ts
CHANGED
|
@@ -11009,7 +11009,7 @@ export class DBClusterNotFoundFault extends S.TaggedErrorClass<DBClusterNotFound
|
|
|
11009
11009
|
"DBClusterNotFoundFault",
|
|
11010
11010
|
{ message: S.optional(S.String) },
|
|
11011
11011
|
T.AwsQueryError({ code: "DBClusterNotFoundFault", httpResponseCode: 404 }),
|
|
11012
|
-
).pipe(C.withBadRequestError) {}
|
|
11012
|
+
).pipe(C.withBadRequestError, C.withNotFoundError) {}
|
|
11013
11013
|
export class DBClusterRoleAlreadyExistsFault extends S.TaggedErrorClass<DBClusterRoleAlreadyExistsFault>()(
|
|
11014
11014
|
"DBClusterRoleAlreadyExistsFault",
|
|
11015
11015
|
{ message: S.optional(S.String) },
|
|
@@ -11033,7 +11033,7 @@ export class InvalidDBClusterStateFault extends S.TaggedErrorClass<InvalidDBClus
|
|
|
11033
11033
|
code: "InvalidDBClusterStateFault",
|
|
11034
11034
|
httpResponseCode: 400,
|
|
11035
11035
|
}),
|
|
11036
|
-
).pipe(C.withBadRequestError) {}
|
|
11036
|
+
).pipe(C.withBadRequestError, C.withConflictError, C.withRetryableError) {}
|
|
11037
11037
|
export class DBInstanceNotFoundFault extends S.TaggedErrorClass<DBInstanceNotFoundFault>()(
|
|
11038
11038
|
"DBInstanceNotFoundFault",
|
|
11039
11039
|
{ message: S.optional(S.String) },
|
|
@@ -11160,7 +11160,7 @@ export class DBSecurityGroupNotFoundFault extends S.TaggedErrorClass<DBSecurityG
|
|
|
11160
11160
|
"DBSecurityGroupNotFoundFault",
|
|
11161
11161
|
{ message: S.optional(S.String) },
|
|
11162
11162
|
T.AwsQueryError({ code: "DBSecurityGroupNotFound", httpResponseCode: 404 }),
|
|
11163
|
-
).pipe(C.withBadRequestError) {}
|
|
11163
|
+
).pipe(C.withBadRequestError, C.withNotFoundError) {}
|
|
11164
11164
|
export class InvalidDBSecurityGroupStateFault extends S.TaggedErrorClass<InvalidDBSecurityGroupStateFault>()(
|
|
11165
11165
|
"InvalidDBSecurityGroupStateFault",
|
|
11166
11166
|
{ message: S.optional(S.String) },
|
|
@@ -11194,7 +11194,7 @@ export class DBParameterGroupNotFoundFault extends S.TaggedErrorClass<DBParamete
|
|
|
11194
11194
|
"DBParameterGroupNotFoundFault",
|
|
11195
11195
|
{ message: S.optional(S.String) },
|
|
11196
11196
|
T.AwsQueryError({ code: "DBParameterGroupNotFound", httpResponseCode: 404 }),
|
|
11197
|
-
).pipe(C.withBadRequestError) {}
|
|
11197
|
+
).pipe(C.withBadRequestError, C.withNotFoundError) {}
|
|
11198
11198
|
export class DBParameterGroupQuotaExceededFault extends S.TaggedErrorClass<DBParameterGroupQuotaExceededFault>()(
|
|
11199
11199
|
"DBParameterGroupQuotaExceededFault",
|
|
11200
11200
|
{ message: S.optional(S.String) },
|
|
@@ -11299,7 +11299,7 @@ export class DBClusterQuotaExceededFault extends S.TaggedErrorClass<DBClusterQuo
|
|
|
11299
11299
|
code: "DBClusterQuotaExceededFault",
|
|
11300
11300
|
httpResponseCode: 403,
|
|
11301
11301
|
}),
|
|
11302
|
-
).pipe(C.withAuthError) {}
|
|
11302
|
+
).pipe(C.withAuthError, C.withQuotaError) {}
|
|
11303
11303
|
export class InstanceQuotaExceededFault extends S.TaggedErrorClass<InstanceQuotaExceededFault>()(
|
|
11304
11304
|
"InstanceQuotaExceededFault",
|
|
11305
11305
|
{ message: S.optional(S.String) },
|
|
@@ -11381,7 +11381,7 @@ export class DBClusterAlreadyExistsFault extends S.TaggedErrorClass<DBClusterAlr
|
|
|
11381
11381
|
code: "DBClusterAlreadyExistsFault",
|
|
11382
11382
|
httpResponseCode: 400,
|
|
11383
11383
|
}),
|
|
11384
|
-
).pipe(C.withBadRequestError, C.withAlreadyExistsError) {}
|
|
11384
|
+
).pipe(C.withBadRequestError, C.withConflictError, C.withAlreadyExistsError) {}
|
|
11385
11385
|
export class DBSubnetGroupDoesNotCoverEnoughAZs extends S.TaggedErrorClass<DBSubnetGroupDoesNotCoverEnoughAZs>()(
|
|
11386
11386
|
"DBSubnetGroupDoesNotCoverEnoughAZs",
|
|
11387
11387
|
{ message: S.optional(S.String) },
|
|
@@ -11397,7 +11397,7 @@ export class DBSubnetGroupNotFoundFault extends S.TaggedErrorClass<DBSubnetGroup
|
|
|
11397
11397
|
code: "DBSubnetGroupNotFoundFault",
|
|
11398
11398
|
httpResponseCode: 404,
|
|
11399
11399
|
}),
|
|
11400
|
-
).pipe(C.withBadRequestError) {}
|
|
11400
|
+
).pipe(C.withBadRequestError, C.withNotFoundError) {}
|
|
11401
11401
|
export class DomainNotFoundFault extends S.TaggedErrorClass<DomainNotFoundFault>()(
|
|
11402
11402
|
"DomainNotFoundFault",
|
|
11403
11403
|
{ message: S.optional(S.String) },
|
|
@@ -11522,7 +11522,7 @@ export class ProvisionedIopsNotAvailableInAZFault extends S.TaggedErrorClass<Pro
|
|
|
11522
11522
|
code: "ProvisionedIopsNotAvailableInAZFault",
|
|
11523
11523
|
httpResponseCode: 400,
|
|
11524
11524
|
}),
|
|
11525
|
-
).pipe(C.withBadRequestError) {}
|
|
11525
|
+
).pipe(C.withBadRequestError, C.withQuotaError) {}
|
|
11526
11526
|
export class TenantDatabaseQuotaExceededFault extends S.TaggedErrorClass<TenantDatabaseQuotaExceededFault>()(
|
|
11527
11527
|
"TenantDatabaseQuotaExceededFault",
|
|
11528
11528
|
{ message: S.optional(S.String) },
|
|
@@ -11630,7 +11630,7 @@ export class DBSubnetGroupQuotaExceededFault extends S.TaggedErrorClass<DBSubnet
|
|
|
11630
11630
|
code: "DBSubnetGroupQuotaExceeded",
|
|
11631
11631
|
httpResponseCode: 400,
|
|
11632
11632
|
}),
|
|
11633
|
-
).pipe(C.withBadRequestError) {}
|
|
11633
|
+
).pipe(C.withBadRequestError, C.withQuotaError) {}
|
|
11634
11634
|
export class DBSubnetQuotaExceededFault extends S.TaggedErrorClass<DBSubnetQuotaExceededFault>()(
|
|
11635
11635
|
"DBSubnetQuotaExceededFault",
|
|
11636
11636
|
{ message: S.optional(S.String) },
|
|
@@ -11975,7 +11975,7 @@ export class InsufficientDBClusterCapacityFault extends S.TaggedErrorClass<Insuf
|
|
|
11975
11975
|
code: "InsufficientDBClusterCapacityFault",
|
|
11976
11976
|
httpResponseCode: 403,
|
|
11977
11977
|
}),
|
|
11978
|
-
).pipe(C.withAuthError) {}
|
|
11978
|
+
).pipe(C.withAuthError, C.withQuotaError) {}
|
|
11979
11979
|
export class InvalidRestoreFault extends S.TaggedErrorClass<InvalidRestoreFault>()(
|
|
11980
11980
|
"InvalidRestoreFault",
|
|
11981
11981
|
{ message: S.optional(S.String) },
|
package/src/services/route-53.ts
CHANGED
|
@@ -4028,7 +4028,7 @@ export class NotAuthorizedException extends S.TaggedErrorClass<NotAuthorizedExce
|
|
|
4028
4028
|
export class PriorRequestNotComplete extends S.TaggedErrorClass<PriorRequestNotComplete>()(
|
|
4029
4029
|
"PriorRequestNotComplete",
|
|
4030
4030
|
{ message: S.optional(S.String) },
|
|
4031
|
-
).pipe(C.withBadRequestError) {}
|
|
4031
|
+
).pipe(C.withBadRequestError, C.withConflictError, C.withRetryableError) {}
|
|
4032
4032
|
export class PublicZoneVPCAssociation extends S.TaggedErrorClass<PublicZoneVPCAssociation>()(
|
|
4033
4033
|
"PublicZoneVPCAssociation",
|
|
4034
4034
|
{ message: S.optional(S.String) },
|
|
@@ -4056,7 +4056,7 @@ export class NoSuchHealthCheck extends S.TaggedErrorClass<NoSuchHealthCheck>()(
|
|
|
4056
4056
|
export class ThrottlingException extends S.TaggedErrorClass<ThrottlingException>()(
|
|
4057
4057
|
"ThrottlingException",
|
|
4058
4058
|
{ message: S.optional(S.String) },
|
|
4059
|
-
).pipe(C.withBadRequestError) {}
|
|
4059
|
+
).pipe(C.withBadRequestError, C.withThrottlingError, C.withRetryableError) {}
|
|
4060
4060
|
export class CidrCollectionAlreadyExistsException extends S.TaggedErrorClass<CidrCollectionAlreadyExistsException>()(
|
|
4061
4061
|
"CidrCollectionAlreadyExistsException",
|
|
4062
4062
|
{ Message: S.optional(S.String) },
|
package/src/services/s3.ts
CHANGED
|
@@ -12057,27 +12057,27 @@ export class BucketAlreadyExists extends S.TaggedErrorClass<BucketAlreadyExists>
|
|
|
12057
12057
|
export class BucketAlreadyOwnedByYou extends S.TaggedErrorClass<BucketAlreadyOwnedByYou>()(
|
|
12058
12058
|
"BucketAlreadyOwnedByYou",
|
|
12059
12059
|
{},
|
|
12060
|
-
).pipe(C.withConflictError) {}
|
|
12060
|
+
).pipe(C.withConflictError, C.withAlreadyExistsError) {}
|
|
12061
12061
|
export class IllegalLocationConstraintException extends S.TaggedErrorClass<IllegalLocationConstraintException>()(
|
|
12062
12062
|
"IllegalLocationConstraintException",
|
|
12063
12063
|
{},
|
|
12064
|
-
) {}
|
|
12064
|
+
).pipe(C.withBadRequestError) {}
|
|
12065
12065
|
export class InvalidArgument extends S.TaggedErrorClass<InvalidArgument>()(
|
|
12066
12066
|
"InvalidArgument",
|
|
12067
12067
|
{},
|
|
12068
|
-
) {}
|
|
12068
|
+
).pipe(C.withBadRequestError) {}
|
|
12069
12069
|
export class InvalidBucketName extends S.TaggedErrorClass<InvalidBucketName>()(
|
|
12070
12070
|
"InvalidBucketName",
|
|
12071
12071
|
{},
|
|
12072
|
-
) {}
|
|
12072
|
+
).pipe(C.withBadRequestError) {}
|
|
12073
12073
|
export class InvalidLocationConstraint extends S.TaggedErrorClass<InvalidLocationConstraint>()(
|
|
12074
12074
|
"InvalidLocationConstraint",
|
|
12075
12075
|
{},
|
|
12076
|
-
) {}
|
|
12076
|
+
).pipe(C.withBadRequestError) {}
|
|
12077
12077
|
export class BucketNotEmpty extends S.TaggedErrorClass<BucketNotEmpty>()(
|
|
12078
12078
|
"BucketNotEmpty",
|
|
12079
12079
|
{},
|
|
12080
|
-
) {}
|
|
12080
|
+
).pipe(C.withConflictError, C.withRetryableError) {}
|
|
12081
12081
|
export class SignatureDoesNotMatch extends S.TaggedErrorClass<SignatureDoesNotMatch>()(
|
|
12082
12082
|
"SignatureDoesNotMatch",
|
|
12083
12083
|
{},
|
|
@@ -12132,7 +12132,7 @@ export class InvalidObjectState extends S.TaggedErrorClass<InvalidObjectState>()
|
|
|
12132
12132
|
export class InvalidRequest extends S.TaggedErrorClass<InvalidRequest>()(
|
|
12133
12133
|
"InvalidRequest",
|
|
12134
12134
|
{},
|
|
12135
|
-
) {}
|
|
12135
|
+
).pipe(C.withBadRequestError) {}
|
|
12136
12136
|
export class ObjectLockConfigurationNotFoundError extends S.TaggedErrorClass<ObjectLockConfigurationNotFoundError>()(
|
|
12137
12137
|
"ObjectLockConfigurationNotFoundError",
|
|
12138
12138
|
{},
|
|
@@ -12148,7 +12148,7 @@ export class RequestError extends S.TaggedErrorClass<RequestError>()(
|
|
|
12148
12148
|
export class MalformedXML extends S.TaggedErrorClass<MalformedXML>()(
|
|
12149
12149
|
"MalformedXML",
|
|
12150
12150
|
{},
|
|
12151
|
-
) {}
|
|
12151
|
+
).pipe(C.withBadRequestError) {}
|
|
12152
12152
|
export class AccessDenied extends S.TaggedErrorClass<AccessDenied>()(
|
|
12153
12153
|
"AccessDenied",
|
|
12154
12154
|
{},
|
|
@@ -12156,11 +12156,11 @@ export class AccessDenied extends S.TaggedErrorClass<AccessDenied>()(
|
|
|
12156
12156
|
export class InvalidDigest extends S.TaggedErrorClass<InvalidDigest>()(
|
|
12157
12157
|
"InvalidDigest",
|
|
12158
12158
|
{},
|
|
12159
|
-
) {}
|
|
12159
|
+
).pipe(C.withBadRequestError) {}
|
|
12160
12160
|
export class MalformedPolicy extends S.TaggedErrorClass<MalformedPolicy>()(
|
|
12161
12161
|
"MalformedPolicy",
|
|
12162
12162
|
{},
|
|
12163
|
-
) {}
|
|
12163
|
+
).pipe(C.withBadRequestError) {}
|
|
12164
12164
|
export class EncryptionTypeMismatch extends S.TaggedErrorClass<EncryptionTypeMismatch>()(
|
|
12165
12165
|
"EncryptionTypeMismatch",
|
|
12166
12166
|
{},
|
|
@@ -12176,7 +12176,7 @@ export class TooManyParts extends S.TaggedErrorClass<TooManyParts>()(
|
|
|
12176
12176
|
export class InvalidBucketState extends S.TaggedErrorClass<InvalidBucketState>()(
|
|
12177
12177
|
"InvalidBucketState",
|
|
12178
12178
|
{},
|
|
12179
|
-
) {}
|
|
12179
|
+
).pipe(C.withConflictError) {}
|
|
12180
12180
|
export class IdempotencyParameterMismatch extends S.TaggedErrorClass<IdempotencyParameterMismatch>()(
|
|
12181
12181
|
"IdempotencyParameterMismatch",
|
|
12182
12182
|
{},
|
|
@@ -888,7 +888,7 @@ export class ValidationException extends S.TaggedErrorClass<ValidationException>
|
|
|
888
888
|
export class ConflictException extends S.TaggedErrorClass<ConflictException>()(
|
|
889
889
|
"ConflictException",
|
|
890
890
|
{ Message: S.String },
|
|
891
|
-
).pipe(C.withConflictError) {}
|
|
891
|
+
).pipe(C.withConflictError, C.withRetryableError) {}
|
|
892
892
|
export class ServiceQuotaExceededException extends S.TaggedErrorClass<ServiceQuotaExceededException>()(
|
|
893
893
|
"ServiceQuotaExceededException",
|
|
894
894
|
{ Message: S.String },
|