@aws-sdk/client-mwaa 3.1043.0 → 3.1045.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.
@@ -6,6 +6,7 @@ export declare var InternalServerException$: StaticErrorSchema;
6
6
  export declare var ResourceNotFoundException$: StaticErrorSchema;
7
7
  export declare var RestApiClientException$: StaticErrorSchema;
8
8
  export declare var RestApiServerException$: StaticErrorSchema;
9
+ export declare var ServiceUnavailableException$: StaticErrorSchema;
9
10
  export declare var ValidationException$: StaticErrorSchema;
10
11
  /**
11
12
  * TypeRegistry instances containing modeled errors.
@@ -14,6 +14,7 @@ export declare const LoggingLevel: {
14
14
  export type LoggingLevel = (typeof LoggingLevel)[keyof typeof LoggingLevel];
15
15
  export declare const WebserverAccessMode: {
16
16
  readonly PRIVATE_ONLY: "PRIVATE_ONLY";
17
+ readonly PUBLIC_AND_PRIVATE: "PUBLIC_AND_PRIVATE";
17
18
  readonly PUBLIC_ONLY: "PUBLIC_ONLY";
18
19
  };
19
20
  export type WebserverAccessMode =
@@ -23,6 +23,13 @@ export declare class InternalServerException extends __BaseException {
23
23
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
24
24
  );
25
25
  }
26
+ export declare class ServiceUnavailableException extends __BaseException {
27
+ readonly name: "ServiceUnavailableException";
28
+ readonly $fault: "server";
29
+ constructor(
30
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
31
+ );
32
+ }
26
33
  export declare class ValidationException extends __BaseException {
27
34
  readonly name: "ValidationException";
28
35
  readonly $fault: "client";
@@ -10,6 +10,7 @@ export declare var InternalServerException$: StaticErrorSchema;
10
10
  export declare var ResourceNotFoundException$: StaticErrorSchema;
11
11
  export declare var RestApiClientException$: StaticErrorSchema;
12
12
  export declare var RestApiServerException$: StaticErrorSchema;
13
+ export declare var ServiceUnavailableException$: StaticErrorSchema;
13
14
  export declare var ValidationException$: StaticErrorSchema;
14
15
  export declare const errorTypeRegistries: TypeRegistry[];
15
16
  export declare var CreateCliTokenRequest$: StaticStructureSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mwaa",
3
3
  "description": "AWS SDK for JavaScript Mwaa Client for Node.js, Browser and React Native",
4
- "version": "3.1043.0",
4
+ "version": "3.1045.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-mwaa",