@aws-sdk/client-mwaa-serverless 3.934.0 → 3.935.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.
@@ -1,84 +1,22 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
1
  import { DocumentType as __DocumentType } from "@smithy/types";
3
- import { MWAAServerlessServiceException as __BaseException } from "./MWAAServerlessServiceException";
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message: string | undefined;
8
- constructor(
9
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
- );
11
- }
12
- export declare class InternalServerException extends __BaseException {
13
- readonly name: "InternalServerException";
14
- readonly $fault: "server";
15
- $retryable: {};
16
- Message: string | undefined;
17
- RetryAfterSeconds?: number | undefined;
18
- constructor(
19
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
20
- );
21
- }
2
+ import {
3
+ EncryptionType,
4
+ EngineVersion,
5
+ RunType,
6
+ TaskInstanceStatus,
7
+ WorkflowRunStatus,
8
+ WorkflowStatus,
9
+ } from "./enums";
22
10
  export interface ListTagsForResourceRequest {
23
11
  ResourceArn: string | undefined;
24
12
  }
25
13
  export interface ListTagsForResourceResponse {
26
14
  Tags?: Record<string, string> | undefined;
27
15
  }
28
- export declare class OperationTimeoutException extends __BaseException {
29
- readonly name: "OperationTimeoutException";
30
- readonly $fault: "server";
31
- Message?: string | undefined;
32
- constructor(
33
- opts: __ExceptionOptionType<OperationTimeoutException, __BaseException>
34
- );
35
- }
36
- export declare class ResourceNotFoundException extends __BaseException {
37
- readonly name: "ResourceNotFoundException";
38
- readonly $fault: "client";
39
- Message: string | undefined;
40
- ResourceId: string | undefined;
41
- ResourceType: string | undefined;
42
- constructor(
43
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
44
- );
45
- }
46
- export declare class ThrottlingException extends __BaseException {
47
- readonly name: "ThrottlingException";
48
- readonly $fault: "client";
49
- $retryable: {
50
- throttling: boolean;
51
- };
52
- Message: string | undefined;
53
- ServiceCode: string | undefined;
54
- QuotaCode: string | undefined;
55
- RetryAfterSeconds?: number | undefined;
56
- constructor(
57
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
58
- );
59
- }
60
16
  export interface ValidationExceptionField {
61
17
  Name: string | undefined;
62
18
  Message: string | undefined;
63
19
  }
64
- export declare const ValidationExceptionReason: {
65
- readonly CANNOT_PARSE: "cannotParse";
66
- readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
67
- readonly OTHER: "other";
68
- readonly UNKNOWN_OPERATION: "unknownOperation";
69
- };
70
- export type ValidationExceptionReason =
71
- (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
72
- export declare class ValidationException extends __BaseException {
73
- readonly name: "ValidationException";
74
- readonly $fault: "client";
75
- Message: string | undefined;
76
- Reason: ValidationExceptionReason | undefined;
77
- FieldList?: ValidationExceptionField[] | undefined;
78
- constructor(
79
- opts: __ExceptionOptionType<ValidationException, __BaseException>
80
- );
81
- }
82
20
  export interface TagResourceRequest {
83
21
  ResourceArn: string | undefined;
84
22
  Tags: Record<string, string> | undefined;
@@ -89,24 +27,6 @@ export interface GetTaskInstanceRequest {
89
27
  TaskInstanceId: string | undefined;
90
28
  RunId: string | undefined;
91
29
  }
92
- export declare const TaskInstanceStatus: {
93
- readonly CANCELLED: "CANCELLED";
94
- readonly DEFERRED: "DEFERRED";
95
- readonly FAILED: "FAILED";
96
- readonly NONE: "NONE";
97
- readonly QUEUED: "QUEUED";
98
- readonly REMOVED: "REMOVED";
99
- readonly RESTARTING: "RESTARTING";
100
- readonly RUNNING: "RUNNING";
101
- readonly SCHEDULED: "SCHEDULED";
102
- readonly SUCCESS: "SUCCESS";
103
- readonly TIMEOUT: "TIMEOUT";
104
- readonly UPSTREAM_FAILED: "UPSTREAM_FAILED";
105
- readonly UP_FOR_RESCHEDULE: "UP_FOR_RESCHEDULE";
106
- readonly UP_FOR_RETRY: "UP_FOR_RETRY";
107
- };
108
- export type TaskInstanceStatus =
109
- (typeof TaskInstanceStatus)[keyof typeof TaskInstanceStatus];
110
30
  export interface GetTaskInstanceResponse {
111
31
  WorkflowArn: string | undefined;
112
32
  RunId: string | undefined;
@@ -148,32 +68,15 @@ export interface UntagResourceRequest {
148
68
  TagKeys: string[] | undefined;
149
69
  }
150
70
  export interface UntagResourceResponse {}
151
- export declare class ConflictException extends __BaseException {
152
- readonly name: "ConflictException";
153
- readonly $fault: "client";
154
- Message: string | undefined;
155
- ResourceId: string | undefined;
156
- ResourceType: string | undefined;
157
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
158
- }
159
71
  export interface DefinitionS3Location {
160
72
  Bucket: string | undefined;
161
73
  ObjectKey: string | undefined;
162
74
  VersionId?: string | undefined;
163
75
  }
164
- export declare const EncryptionType: {
165
- readonly AWS_MANAGED_KEY: "AWS_MANAGED_KEY";
166
- readonly CUSTOMER_MANAGED_KEY: "CUSTOMER_MANAGED_KEY";
167
- };
168
- export type EncryptionType =
169
- (typeof EncryptionType)[keyof typeof EncryptionType];
170
76
  export interface EncryptionConfiguration {
171
77
  Type: EncryptionType | undefined;
172
78
  KmsKeyId?: string | undefined;
173
79
  }
174
- export declare enum EngineVersion {
175
- ONE = 1,
176
- }
177
80
  export interface LoggingConfiguration {
178
81
  LogGroupName: string | undefined;
179
82
  }
@@ -194,12 +97,6 @@ export interface CreateWorkflowRequest {
194
97
  Tags?: Record<string, string> | undefined;
195
98
  TriggerMode?: string | undefined;
196
99
  }
197
- export declare const WorkflowStatus: {
198
- readonly DELETING: "DELETING";
199
- readonly READY: "READY";
200
- };
201
- export type WorkflowStatus =
202
- (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
203
100
  export interface CreateWorkflowResponse {
204
101
  WorkflowArn: string | undefined;
205
102
  CreatedAt?: Date | undefined;
@@ -209,18 +106,6 @@ export interface CreateWorkflowResponse {
209
106
  IsLatestVersion?: boolean | undefined;
210
107
  Warnings?: string[] | undefined;
211
108
  }
212
- export declare class ServiceQuotaExceededException extends __BaseException {
213
- readonly name: "ServiceQuotaExceededException";
214
- readonly $fault: "client";
215
- Message: string | undefined;
216
- ResourceId: string | undefined;
217
- ResourceType: string | undefined;
218
- ServiceCode: string | undefined;
219
- QuotaCode: string | undefined;
220
- constructor(
221
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
222
- );
223
- }
224
109
  export interface DeleteWorkflowRequest {
225
110
  WorkflowArn: string | undefined;
226
111
  WorkflowVersion?: string | undefined;
@@ -292,23 +177,6 @@ export interface GetWorkflowRunRequest {
292
177
  WorkflowArn: string | undefined;
293
178
  RunId: string | undefined;
294
179
  }
295
- export declare const WorkflowRunStatus: {
296
- readonly FAILED: "FAILED";
297
- readonly QUEUED: "QUEUED";
298
- readonly RUNNING: "RUNNING";
299
- readonly STARTING: "STARTING";
300
- readonly STOPPED: "STOPPED";
301
- readonly STOPPING: "STOPPING";
302
- readonly SUCCESS: "SUCCESS";
303
- readonly TIMEOUT: "TIMEOUT";
304
- };
305
- export type WorkflowRunStatus =
306
- (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
307
- export declare const RunType: {
308
- readonly ON_DEMAND: "ON_DEMAND";
309
- readonly SCHEDULED: "SCHEDULED";
310
- };
311
- export type RunType = (typeof RunType)[keyof typeof RunType];
312
180
  export interface WorkflowRunDetail {
313
181
  WorkflowArn?: string | undefined;
314
182
  WorkflowVersion?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mwaa-serverless",
3
3
  "description": "AWS SDK for JavaScript Mwaa Serverless Client for Node.js, Browser and React Native",
4
- "version": "3.934.0",
4
+ "version": "3.935.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-mwaa-serverless",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";