@distilled.cloud/aws 0.16.8 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 -3
- 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/lib/services/iam.js
CHANGED
|
@@ -2567,15 +2567,15 @@ export const UploadSSHPublicKeyResponse = /*@__PURE__*/ /*#__PURE__*/ S.suspend(
|
|
|
2567
2567
|
identifier: "UploadSSHPublicKeyResponse",
|
|
2568
2568
|
});
|
|
2569
2569
|
//# Errors
|
|
2570
|
-
export class ConcurrentModificationException extends S.TaggedErrorClass()("ConcurrentModificationException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "ConcurrentModification", httpResponseCode: 409 })).pipe(C.withConflictError) {
|
|
2570
|
+
export class ConcurrentModificationException extends S.TaggedErrorClass()("ConcurrentModificationException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "ConcurrentModification", httpResponseCode: 409 })).pipe(C.withConflictError, C.withRetryableError) {
|
|
2571
2571
|
}
|
|
2572
|
-
export class NoSuchEntityException extends S.TaggedErrorClass()("NoSuchEntityException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "NoSuchEntity", httpResponseCode: 404 })).pipe(C.withBadRequestError) {
|
|
2572
|
+
export class NoSuchEntityException extends S.TaggedErrorClass()("NoSuchEntityException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "NoSuchEntity", httpResponseCode: 404 })).pipe(C.withBadRequestError, C.withNotFoundError) {
|
|
2573
2573
|
}
|
|
2574
|
-
export class ServiceFailureException extends S.TaggedErrorClass()("ServiceFailureException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "ServiceFailure", httpResponseCode: 500 })).pipe(C.withServerError) {
|
|
2574
|
+
export class ServiceFailureException extends S.TaggedErrorClass()("ServiceFailureException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "ServiceFailure", httpResponseCode: 500 })).pipe(C.withServerError, C.withRetryableError) {
|
|
2575
2575
|
}
|
|
2576
2576
|
export class InvalidInputException extends S.TaggedErrorClass()("InvalidInputException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "InvalidInput", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
2577
2577
|
}
|
|
2578
|
-
export class LimitExceededException extends S.TaggedErrorClass()("LimitExceededException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "LimitExceeded", httpResponseCode: 409 })).pipe(C.withConflictError) {
|
|
2578
|
+
export class LimitExceededException extends S.TaggedErrorClass()("LimitExceededException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "LimitExceeded", httpResponseCode: 409 })).pipe(C.withConflictError, C.withQuotaError) {
|
|
2579
2579
|
}
|
|
2580
2580
|
export class EntityAlreadyExistsException extends S.TaggedErrorClass()("EntityAlreadyExistsException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "EntityAlreadyExists", httpResponseCode: 409 })).pipe(C.withConflictError, C.withAlreadyExistsError) {
|
|
2581
2581
|
}
|
|
@@ -2586,7 +2586,7 @@ export class PolicyNotAttachableException extends S.TaggedErrorClass()("PolicyNo
|
|
|
2586
2586
|
export class EntityTemporarilyUnmodifiableException extends S.TaggedErrorClass()("EntityTemporarilyUnmodifiableException", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
2587
2587
|
code: "EntityTemporarilyUnmodifiable",
|
|
2588
2588
|
httpResponseCode: 409,
|
|
2589
|
-
})).pipe(C.withConflictError) {
|
|
2589
|
+
})).pipe(C.withConflictError, C.withRetryableError) {
|
|
2590
2590
|
}
|
|
2591
2591
|
export class InvalidUserTypeException extends S.TaggedErrorClass()("InvalidUserTypeException", { message: S.optional(S.String) }, T.AwsQueryError({ code: "InvalidUserType", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
2592
2592
|
}
|
|
@@ -2635,7 +2635,7 @@ export class UnrecognizedPublicKeyEncodingException extends S.TaggedErrorClass()
|
|
|
2635
2635
|
httpResponseCode: 400,
|
|
2636
2636
|
})).pipe(C.withBadRequestError) {
|
|
2637
2637
|
}
|
|
2638
|
-
export class RequestLimitExceeded extends S.TaggedErrorClass()("RequestLimitExceeded", {}).pipe(C.withThrottlingError) {
|
|
2638
|
+
export class RequestLimitExceeded extends S.TaggedErrorClass()("RequestLimitExceeded", {}).pipe(C.withThrottlingError, C.withRetryableError) {
|
|
2639
2639
|
}
|
|
2640
2640
|
export class InvalidInput extends S.TaggedErrorClass()("InvalidInput", {}) {
|
|
2641
2641
|
}
|