@effect-aws/client-bedrock 1.10.3 → 1.10.7

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/src/Errors.ts CHANGED
@@ -2,6 +2,7 @@ import type {
2
2
  AccessDeniedException,
3
3
  ConflictException,
4
4
  InternalServerException,
5
+ ResourceInUseException,
5
6
  ResourceNotFoundException,
6
7
  ServiceQuotaExceededException,
7
8
  ServiceUnavailableException,
@@ -15,6 +16,7 @@ export const AllServiceErrors = [
15
16
  "AccessDeniedException",
16
17
  "ConflictException",
17
18
  "InternalServerException",
19
+ "ResourceInUseException",
18
20
  "ResourceNotFoundException",
19
21
  "ServiceQuotaExceededException",
20
22
  "ServiceUnavailableException",
@@ -26,6 +28,7 @@ export const AllServiceErrors = [
26
28
  export type AccessDeniedError = TaggedException<AccessDeniedException>;
27
29
  export type ConflictError = TaggedException<ConflictException>;
28
30
  export type InternalServerError = TaggedException<InternalServerException>;
31
+ export type ResourceInUseError = TaggedException<ResourceInUseException>;
29
32
  export type ResourceNotFoundError = TaggedException<ResourceNotFoundException>;
30
33
  export type ServiceQuotaExceededError = TaggedException<ServiceQuotaExceededException>;
31
34
  export type ServiceUnavailableError = TaggedException<ServiceUnavailableException>;