@effect-aws/client-bedrock 1.10.2 → 1.10.6

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>;
package/src/index.ts CHANGED
@@ -34,6 +34,12 @@ export declare namespace Bedrock {
34
34
  * @alias BedrockService.Config
35
35
  */
36
36
  export type Config = BedrockService.Config;
37
+
38
+ /**
39
+ * @since 1.0.0
40
+ * @alias BedrockService.Type
41
+ */
42
+ export type Type = BedrockService.Type;
37
43
  }
38
44
 
39
45
  /**