@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/rds.js
CHANGED
|
@@ -4329,7 +4329,7 @@ export const SwitchoverReadReplicaResult =
|
|
|
4329
4329
|
identifier: "SwitchoverReadReplicaResult",
|
|
4330
4330
|
});
|
|
4331
4331
|
//# Errors
|
|
4332
|
-
export class DBClusterNotFoundFault extends S.TaggedErrorClass()("DBClusterNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "DBClusterNotFoundFault", httpResponseCode: 404 })).pipe(C.withBadRequestError) {
|
|
4332
|
+
export class DBClusterNotFoundFault extends S.TaggedErrorClass()("DBClusterNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "DBClusterNotFoundFault", httpResponseCode: 404 })).pipe(C.withBadRequestError, C.withNotFoundError) {
|
|
4333
4333
|
}
|
|
4334
4334
|
export class DBClusterRoleAlreadyExistsFault extends S.TaggedErrorClass()("DBClusterRoleAlreadyExistsFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4335
4335
|
code: "DBClusterRoleAlreadyExists",
|
|
@@ -4344,7 +4344,7 @@ export class DBClusterRoleQuotaExceededFault extends S.TaggedErrorClass()("DBClu
|
|
|
4344
4344
|
export class InvalidDBClusterStateFault extends S.TaggedErrorClass()("InvalidDBClusterStateFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4345
4345
|
code: "InvalidDBClusterStateFault",
|
|
4346
4346
|
httpResponseCode: 400,
|
|
4347
|
-
})).pipe(C.withBadRequestError) {
|
|
4347
|
+
})).pipe(C.withBadRequestError, C.withConflictError, C.withRetryableError) {
|
|
4348
4348
|
}
|
|
4349
4349
|
export class DBInstanceNotFoundFault extends S.TaggedErrorClass()("DBInstanceNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "DBInstanceNotFound", httpResponseCode: 404 })).pipe(C.withBadRequestError) {
|
|
4350
4350
|
}
|
|
@@ -4411,7 +4411,7 @@ export class AuthorizationQuotaExceededFault extends S.TaggedErrorClass()("Autho
|
|
|
4411
4411
|
httpResponseCode: 400,
|
|
4412
4412
|
})).pipe(C.withBadRequestError) {
|
|
4413
4413
|
}
|
|
4414
|
-
export class DBSecurityGroupNotFoundFault extends S.TaggedErrorClass()("DBSecurityGroupNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "DBSecurityGroupNotFound", httpResponseCode: 404 })).pipe(C.withBadRequestError) {
|
|
4414
|
+
export class DBSecurityGroupNotFoundFault extends S.TaggedErrorClass()("DBSecurityGroupNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "DBSecurityGroupNotFound", httpResponseCode: 404 })).pipe(C.withBadRequestError, C.withNotFoundError) {
|
|
4415
4415
|
}
|
|
4416
4416
|
export class InvalidDBSecurityGroupStateFault extends S.TaggedErrorClass()("InvalidDBSecurityGroupStateFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4417
4417
|
code: "InvalidDBSecurityGroupState",
|
|
@@ -4430,7 +4430,7 @@ export class DBParameterGroupAlreadyExistsFault extends S.TaggedErrorClass()("DB
|
|
|
4430
4430
|
httpResponseCode: 400,
|
|
4431
4431
|
})).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
4432
4432
|
}
|
|
4433
|
-
export class DBParameterGroupNotFoundFault extends S.TaggedErrorClass()("DBParameterGroupNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "DBParameterGroupNotFound", httpResponseCode: 404 })).pipe(C.withBadRequestError) {
|
|
4433
|
+
export class DBParameterGroupNotFoundFault extends S.TaggedErrorClass()("DBParameterGroupNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "DBParameterGroupNotFound", httpResponseCode: 404 })).pipe(C.withBadRequestError, C.withNotFoundError) {
|
|
4434
4434
|
}
|
|
4435
4435
|
export class DBParameterGroupQuotaExceededFault extends S.TaggedErrorClass()("DBParameterGroupQuotaExceededFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4436
4436
|
code: "DBParameterGroupQuotaExceeded",
|
|
@@ -4490,7 +4490,7 @@ export class DBClusterParameterGroupNotFoundFault extends S.TaggedErrorClass()("
|
|
|
4490
4490
|
export class DBClusterQuotaExceededFault extends S.TaggedErrorClass()("DBClusterQuotaExceededFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4491
4491
|
code: "DBClusterQuotaExceededFault",
|
|
4492
4492
|
httpResponseCode: 403,
|
|
4493
|
-
})).pipe(C.withAuthError) {
|
|
4493
|
+
})).pipe(C.withAuthError, C.withQuotaError) {
|
|
4494
4494
|
}
|
|
4495
4495
|
export class InstanceQuotaExceededFault extends S.TaggedErrorClass()("InstanceQuotaExceededFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "InstanceQuotaExceeded", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
4496
4496
|
}
|
|
@@ -4539,7 +4539,7 @@ export class InvalidCustomDBEngineVersionStateFault extends S.TaggedErrorClass()
|
|
|
4539
4539
|
export class DBClusterAlreadyExistsFault extends S.TaggedErrorClass()("DBClusterAlreadyExistsFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4540
4540
|
code: "DBClusterAlreadyExistsFault",
|
|
4541
4541
|
httpResponseCode: 400,
|
|
4542
|
-
})).pipe(C.withBadRequestError, C.withAlreadyExistsError) {
|
|
4542
|
+
})).pipe(C.withBadRequestError, C.withConflictError, C.withAlreadyExistsError) {
|
|
4543
4543
|
}
|
|
4544
4544
|
export class DBSubnetGroupDoesNotCoverEnoughAZs extends S.TaggedErrorClass()("DBSubnetGroupDoesNotCoverEnoughAZs", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4545
4545
|
code: "DBSubnetGroupDoesNotCoverEnoughAZs",
|
|
@@ -4549,7 +4549,7 @@ export class DBSubnetGroupDoesNotCoverEnoughAZs extends S.TaggedErrorClass()("DB
|
|
|
4549
4549
|
export class DBSubnetGroupNotFoundFault extends S.TaggedErrorClass()("DBSubnetGroupNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4550
4550
|
code: "DBSubnetGroupNotFoundFault",
|
|
4551
4551
|
httpResponseCode: 404,
|
|
4552
|
-
})).pipe(C.withBadRequestError) {
|
|
4552
|
+
})).pipe(C.withBadRequestError, C.withNotFoundError) {
|
|
4553
4553
|
}
|
|
4554
4554
|
export class DomainNotFoundFault extends S.TaggedErrorClass()("DomainNotFoundFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "DomainNotFoundFault", httpResponseCode: 404 })).pipe(C.withBadRequestError) {
|
|
4555
4555
|
}
|
|
@@ -4617,7 +4617,7 @@ export class DBInstanceAlreadyExistsFault extends S.TaggedErrorClass()("DBInstan
|
|
|
4617
4617
|
export class ProvisionedIopsNotAvailableInAZFault extends S.TaggedErrorClass()("ProvisionedIopsNotAvailableInAZFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4618
4618
|
code: "ProvisionedIopsNotAvailableInAZFault",
|
|
4619
4619
|
httpResponseCode: 400,
|
|
4620
|
-
})).pipe(C.withBadRequestError) {
|
|
4620
|
+
})).pipe(C.withBadRequestError, C.withQuotaError) {
|
|
4621
4621
|
}
|
|
4622
4622
|
export class TenantDatabaseQuotaExceededFault extends S.TaggedErrorClass()("TenantDatabaseQuotaExceededFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4623
4623
|
code: "TenantDatabaseQuotaExceeded",
|
|
@@ -4680,7 +4680,7 @@ export class DBSubnetGroupAlreadyExistsFault extends S.TaggedErrorClass()("DBSub
|
|
|
4680
4680
|
export class DBSubnetGroupQuotaExceededFault extends S.TaggedErrorClass()("DBSubnetGroupQuotaExceededFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4681
4681
|
code: "DBSubnetGroupQuotaExceeded",
|
|
4682
4682
|
httpResponseCode: 400,
|
|
4683
|
-
})).pipe(C.withBadRequestError) {
|
|
4683
|
+
})).pipe(C.withBadRequestError, C.withQuotaError) {
|
|
4684
4684
|
}
|
|
4685
4685
|
export class DBSubnetQuotaExceededFault extends S.TaggedErrorClass()("DBSubnetQuotaExceededFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4686
4686
|
code: "DBSubnetQuotaExceededFault",
|
|
@@ -4881,7 +4881,7 @@ export class InvalidS3BucketFault extends S.TaggedErrorClass()("InvalidS3BucketF
|
|
|
4881
4881
|
export class InsufficientDBClusterCapacityFault extends S.TaggedErrorClass()("InsufficientDBClusterCapacityFault", { message: S.optional(S.String) }, T.AwsQueryError({
|
|
4882
4882
|
code: "InsufficientDBClusterCapacityFault",
|
|
4883
4883
|
httpResponseCode: 403,
|
|
4884
|
-
})).pipe(C.withAuthError) {
|
|
4884
|
+
})).pipe(C.withAuthError, C.withQuotaError) {
|
|
4885
4885
|
}
|
|
4886
4886
|
export class InvalidRestoreFault extends S.TaggedErrorClass()("InvalidRestoreFault", { message: S.optional(S.String) }, T.AwsQueryError({ code: "InvalidRestoreFault", httpResponseCode: 400 })).pipe(C.withBadRequestError) {
|
|
4887
4887
|
}
|