@aws-sdk/client-healthlake 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.
package/dist-cjs/index.js CHANGED
@@ -132,15 +132,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends HealthLakeServ
132
132
  this.Message = opts.Message;
133
133
  }
134
134
  };
135
- const AuthorizationStrategy = {
136
- AWS_AUTH: "AWS_AUTH",
137
- SMARTV1: "SMART_ON_FHIR_V1",
138
- SMART_ON_FHIR: "SMART_ON_FHIR",
139
- };
140
- const CmkType = {
141
- AO_CMK: "AWS_OWNED_KMS_KEY",
142
- CM_CMK: "CUSTOMER_MANAGED_KMS_KEY",
143
- };
144
135
  let ConflictException$1 = class ConflictException extends HealthLakeServiceException$1 {
145
136
  name = "ConflictException";
146
137
  $fault = "client";
@@ -155,19 +146,6 @@ let ConflictException$1 = class ConflictException extends HealthLakeServiceExcep
155
146
  this.Message = opts.Message;
156
147
  }
157
148
  };
158
- const FHIRVersion = {
159
- R4: "R4",
160
- };
161
- const PreloadDataType = {
162
- SYNTHEA: "SYNTHEA",
163
- };
164
- const DatastoreStatus = {
165
- ACTIVE: "ACTIVE",
166
- CREATE_FAILED: "CREATE_FAILED",
167
- CREATING: "CREATING",
168
- DELETED: "DELETED",
169
- DELETING: "DELETING",
170
- };
171
149
  let InternalServerException$1 = class InternalServerException extends HealthLakeServiceException$1 {
172
150
  name = "InternalServerException";
173
151
  $fault = "server";
@@ -210,10 +188,6 @@ let ValidationException$1 = class ValidationException extends HealthLakeServiceE
210
188
  this.Message = opts.Message;
211
189
  }
212
190
  };
213
- const ErrorCategory = {
214
- NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR",
215
- RETRYABLE_ERROR: "RETRYABLE_ERROR",
216
- };
217
191
  let ResourceNotFoundException$1 = class ResourceNotFoundException extends HealthLakeServiceException$1 {
218
192
  name = "ResourceNotFoundException";
219
193
  $fault = "client";
@@ -228,23 +202,6 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Health
228
202
  this.Message = opts.Message;
229
203
  }
230
204
  };
231
- const JobStatus = {
232
- CANCEL_COMPLETED: "CANCEL_COMPLETED",
233
- CANCEL_FAILED: "CANCEL_FAILED",
234
- CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
235
- CANCEL_SUBMITTED: "CANCEL_SUBMITTED",
236
- COMPLETED: "COMPLETED",
237
- COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
238
- FAILED: "FAILED",
239
- IN_PROGRESS: "IN_PROGRESS",
240
- QUEUED: "QUEUED",
241
- SUBMITTED: "SUBMITTED",
242
- };
243
- const ValidationLevel = {
244
- MINIMAL: "minimal",
245
- STRICT: "strict",
246
- STRUCTURE_ONLY: "structure-only",
247
- };
248
205
 
249
206
  const _ADE = "AccessDeniedException";
250
207
  const _AS = "AuthorizationStrategy";
@@ -1096,6 +1053,50 @@ const waitUntilFHIRImportJobCompleted = async (params, input) => {
1096
1053
  return utilWaiter.checkExceptions(result);
1097
1054
  };
1098
1055
 
1056
+ const AuthorizationStrategy = {
1057
+ AWS_AUTH: "AWS_AUTH",
1058
+ SMARTV1: "SMART_ON_FHIR_V1",
1059
+ SMART_ON_FHIR: "SMART_ON_FHIR",
1060
+ };
1061
+ const CmkType = {
1062
+ AO_CMK: "AWS_OWNED_KMS_KEY",
1063
+ CM_CMK: "CUSTOMER_MANAGED_KMS_KEY",
1064
+ };
1065
+ const FHIRVersion = {
1066
+ R4: "R4",
1067
+ };
1068
+ const PreloadDataType = {
1069
+ SYNTHEA: "SYNTHEA",
1070
+ };
1071
+ const DatastoreStatus = {
1072
+ ACTIVE: "ACTIVE",
1073
+ CREATE_FAILED: "CREATE_FAILED",
1074
+ CREATING: "CREATING",
1075
+ DELETED: "DELETED",
1076
+ DELETING: "DELETING",
1077
+ };
1078
+ const ErrorCategory = {
1079
+ NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR",
1080
+ RETRYABLE_ERROR: "RETRYABLE_ERROR",
1081
+ };
1082
+ const JobStatus = {
1083
+ CANCEL_COMPLETED: "CANCEL_COMPLETED",
1084
+ CANCEL_FAILED: "CANCEL_FAILED",
1085
+ CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
1086
+ CANCEL_SUBMITTED: "CANCEL_SUBMITTED",
1087
+ COMPLETED: "COMPLETED",
1088
+ COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
1089
+ FAILED: "FAILED",
1090
+ IN_PROGRESS: "IN_PROGRESS",
1091
+ QUEUED: "QUEUED",
1092
+ SUBMITTED: "SUBMITTED",
1093
+ };
1094
+ const ValidationLevel = {
1095
+ MINIMAL: "minimal",
1096
+ STRICT: "strict",
1097
+ STRUCTURE_ONLY: "structure-only",
1098
+ };
1099
+
1099
1100
  Object.defineProperty(exports, "$Command", {
1100
1101
  enumerable: true,
1101
1102
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -3,5 +3,6 @@ export * from "./HealthLake";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./waiters";
6
- export * from "./models";
6
+ export * from "./models/enums";
7
+ export * from "./models/errors";
7
8
  export { HealthLakeServiceException } from "./models/HealthLakeServiceException";
@@ -0,0 +1,43 @@
1
+ export const AuthorizationStrategy = {
2
+ AWS_AUTH: "AWS_AUTH",
3
+ SMARTV1: "SMART_ON_FHIR_V1",
4
+ SMART_ON_FHIR: "SMART_ON_FHIR",
5
+ };
6
+ export const CmkType = {
7
+ AO_CMK: "AWS_OWNED_KMS_KEY",
8
+ CM_CMK: "CUSTOMER_MANAGED_KMS_KEY",
9
+ };
10
+ export const FHIRVersion = {
11
+ R4: "R4",
12
+ };
13
+ export const PreloadDataType = {
14
+ SYNTHEA: "SYNTHEA",
15
+ };
16
+ export const DatastoreStatus = {
17
+ ACTIVE: "ACTIVE",
18
+ CREATE_FAILED: "CREATE_FAILED",
19
+ CREATING: "CREATING",
20
+ DELETED: "DELETED",
21
+ DELETING: "DELETING",
22
+ };
23
+ export const ErrorCategory = {
24
+ NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR",
25
+ RETRYABLE_ERROR: "RETRYABLE_ERROR",
26
+ };
27
+ export const JobStatus = {
28
+ CANCEL_COMPLETED: "CANCEL_COMPLETED",
29
+ CANCEL_FAILED: "CANCEL_FAILED",
30
+ CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
31
+ CANCEL_SUBMITTED: "CANCEL_SUBMITTED",
32
+ COMPLETED: "COMPLETED",
33
+ COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
34
+ FAILED: "FAILED",
35
+ IN_PROGRESS: "IN_PROGRESS",
36
+ QUEUED: "QUEUED",
37
+ SUBMITTED: "SUBMITTED",
38
+ };
39
+ export const ValidationLevel = {
40
+ MINIMAL: "minimal",
41
+ STRICT: "strict",
42
+ STRUCTURE_ONLY: "structure-only",
43
+ };
@@ -0,0 +1,85 @@
1
+ import { HealthLakeServiceException as __BaseException } from "./HealthLakeServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessDeniedException",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class ConflictException extends __BaseException {
17
+ name = "ConflictException";
18
+ $fault = "client";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "ConflictException",
23
+ $fault: "client",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, ConflictException.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ export class InternalServerException extends __BaseException {
31
+ name = "InternalServerException";
32
+ $fault = "server";
33
+ Message;
34
+ constructor(opts) {
35
+ super({
36
+ name: "InternalServerException",
37
+ $fault: "server",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, InternalServerException.prototype);
41
+ this.Message = opts.Message;
42
+ }
43
+ }
44
+ export class ThrottlingException extends __BaseException {
45
+ name = "ThrottlingException";
46
+ $fault = "client";
47
+ Message;
48
+ constructor(opts) {
49
+ super({
50
+ name: "ThrottlingException",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
55
+ this.Message = opts.Message;
56
+ }
57
+ }
58
+ export class ValidationException extends __BaseException {
59
+ name = "ValidationException";
60
+ $fault = "client";
61
+ Message;
62
+ constructor(opts) {
63
+ super({
64
+ name: "ValidationException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, ValidationException.prototype);
69
+ this.Message = opts.Message;
70
+ }
71
+ }
72
+ export class ResourceNotFoundException extends __BaseException {
73
+ name = "ResourceNotFoundException";
74
+ $fault = "client";
75
+ Message;
76
+ constructor(opts) {
77
+ super({
78
+ name: "ResourceNotFoundException",
79
+ $fault: "client",
80
+ ...opts,
81
+ });
82
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
83
+ this.Message = opts.Message;
84
+ }
85
+ }
@@ -1,128 +1 @@
1
- import { HealthLakeServiceException as __BaseException } from "./HealthLakeServiceException";
2
- export class AccessDeniedException extends __BaseException {
3
- name = "AccessDeniedException";
4
- $fault = "client";
5
- Message;
6
- constructor(opts) {
7
- super({
8
- name: "AccessDeniedException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
- this.Message = opts.Message;
14
- }
15
- }
16
- export const AuthorizationStrategy = {
17
- AWS_AUTH: "AWS_AUTH",
18
- SMARTV1: "SMART_ON_FHIR_V1",
19
- SMART_ON_FHIR: "SMART_ON_FHIR",
20
- };
21
- export const CmkType = {
22
- AO_CMK: "AWS_OWNED_KMS_KEY",
23
- CM_CMK: "CUSTOMER_MANAGED_KMS_KEY",
24
- };
25
- export class ConflictException extends __BaseException {
26
- name = "ConflictException";
27
- $fault = "client";
28
- Message;
29
- constructor(opts) {
30
- super({
31
- name: "ConflictException",
32
- $fault: "client",
33
- ...opts,
34
- });
35
- Object.setPrototypeOf(this, ConflictException.prototype);
36
- this.Message = opts.Message;
37
- }
38
- }
39
- export const FHIRVersion = {
40
- R4: "R4",
41
- };
42
- export const PreloadDataType = {
43
- SYNTHEA: "SYNTHEA",
44
- };
45
- export const DatastoreStatus = {
46
- ACTIVE: "ACTIVE",
47
- CREATE_FAILED: "CREATE_FAILED",
48
- CREATING: "CREATING",
49
- DELETED: "DELETED",
50
- DELETING: "DELETING",
51
- };
52
- export class InternalServerException extends __BaseException {
53
- name = "InternalServerException";
54
- $fault = "server";
55
- Message;
56
- constructor(opts) {
57
- super({
58
- name: "InternalServerException",
59
- $fault: "server",
60
- ...opts,
61
- });
62
- Object.setPrototypeOf(this, InternalServerException.prototype);
63
- this.Message = opts.Message;
64
- }
65
- }
66
- export class ThrottlingException extends __BaseException {
67
- name = "ThrottlingException";
68
- $fault = "client";
69
- Message;
70
- constructor(opts) {
71
- super({
72
- name: "ThrottlingException",
73
- $fault: "client",
74
- ...opts,
75
- });
76
- Object.setPrototypeOf(this, ThrottlingException.prototype);
77
- this.Message = opts.Message;
78
- }
79
- }
80
- export class ValidationException extends __BaseException {
81
- name = "ValidationException";
82
- $fault = "client";
83
- Message;
84
- constructor(opts) {
85
- super({
86
- name: "ValidationException",
87
- $fault: "client",
88
- ...opts,
89
- });
90
- Object.setPrototypeOf(this, ValidationException.prototype);
91
- this.Message = opts.Message;
92
- }
93
- }
94
- export const ErrorCategory = {
95
- NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR",
96
- RETRYABLE_ERROR: "RETRYABLE_ERROR",
97
- };
98
- export class ResourceNotFoundException extends __BaseException {
99
- name = "ResourceNotFoundException";
100
- $fault = "client";
101
- Message;
102
- constructor(opts) {
103
- super({
104
- name: "ResourceNotFoundException",
105
- $fault: "client",
106
- ...opts,
107
- });
108
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
109
- this.Message = opts.Message;
110
- }
111
- }
112
- export const JobStatus = {
113
- CANCEL_COMPLETED: "CANCEL_COMPLETED",
114
- CANCEL_FAILED: "CANCEL_FAILED",
115
- CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS",
116
- CANCEL_SUBMITTED: "CANCEL_SUBMITTED",
117
- COMPLETED: "COMPLETED",
118
- COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS",
119
- FAILED: "FAILED",
120
- IN_PROGRESS: "IN_PROGRESS",
121
- QUEUED: "QUEUED",
122
- SUBMITTED: "SUBMITTED",
123
- };
124
- export const ValidationLevel = {
125
- MINIMAL: "minimal",
126
- STRICT: "strict",
127
- STRUCTURE_ONLY: "structure-only",
128
- };
1
+ export {};
@@ -115,8 +115,8 @@ const _s = "server";
115
115
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.healthlake";
116
116
  const n0 = "com.amazonaws.healthlake";
117
117
  import { TypeRegistry } from "@smithy/core/schema";
118
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
118
119
  import { HealthLakeServiceException as __HealthLakeServiceException } from "../models/HealthLakeServiceException";
119
- import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
120
120
  export var AccessDeniedException = [
121
121
  -3,
122
122
  n0,
@@ -13,5 +13,7 @@ export type { HealthLakeExtensionConfiguration } from "./extensionConfiguration"
13
13
  export * from "./commands";
14
14
  export * from "./pagination";
15
15
  export * from "./waiters";
16
- export * from "./models";
16
+ export * from "./models/enums";
17
+ export * from "./models/errors";
18
+ export type * from "./models/models_0";
17
19
  export { HealthLakeServiceException } from "./models/HealthLakeServiceException";
@@ -0,0 +1,107 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AuthorizationStrategy: {
6
+ readonly AWS_AUTH: "AWS_AUTH";
7
+ readonly SMARTV1: "SMART_ON_FHIR_V1";
8
+ readonly SMART_ON_FHIR: "SMART_ON_FHIR";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type AuthorizationStrategy = (typeof AuthorizationStrategy)[keyof typeof AuthorizationStrategy];
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const CmkType: {
19
+ readonly AO_CMK: "AWS_OWNED_KMS_KEY";
20
+ readonly CM_CMK: "CUSTOMER_MANAGED_KMS_KEY";
21
+ };
22
+ /**
23
+ * @public
24
+ */
25
+ export type CmkType = (typeof CmkType)[keyof typeof CmkType];
26
+ /**
27
+ * @public
28
+ * @enum
29
+ */
30
+ export declare const FHIRVersion: {
31
+ readonly R4: "R4";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const PreloadDataType: {
42
+ readonly SYNTHEA: "SYNTHEA";
43
+ };
44
+ /**
45
+ * @public
46
+ */
47
+ export type PreloadDataType = (typeof PreloadDataType)[keyof typeof PreloadDataType];
48
+ /**
49
+ * @public
50
+ * @enum
51
+ */
52
+ export declare const DatastoreStatus: {
53
+ readonly ACTIVE: "ACTIVE";
54
+ readonly CREATE_FAILED: "CREATE_FAILED";
55
+ readonly CREATING: "CREATING";
56
+ readonly DELETED: "DELETED";
57
+ readonly DELETING: "DELETING";
58
+ };
59
+ /**
60
+ * @public
61
+ */
62
+ export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
63
+ /**
64
+ * @public
65
+ * @enum
66
+ */
67
+ export declare const ErrorCategory: {
68
+ readonly NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR";
69
+ readonly RETRYABLE_ERROR: "RETRYABLE_ERROR";
70
+ };
71
+ /**
72
+ * @public
73
+ */
74
+ export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const JobStatus: {
80
+ readonly CANCEL_COMPLETED: "CANCEL_COMPLETED";
81
+ readonly CANCEL_FAILED: "CANCEL_FAILED";
82
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
83
+ readonly CANCEL_SUBMITTED: "CANCEL_SUBMITTED";
84
+ readonly COMPLETED: "COMPLETED";
85
+ readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
86
+ readonly FAILED: "FAILED";
87
+ readonly IN_PROGRESS: "IN_PROGRESS";
88
+ readonly QUEUED: "QUEUED";
89
+ readonly SUBMITTED: "SUBMITTED";
90
+ };
91
+ /**
92
+ * @public
93
+ */
94
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
95
+ /**
96
+ * @public
97
+ * @enum
98
+ */
99
+ export declare const ValidationLevel: {
100
+ readonly MINIMAL: "minimal";
101
+ readonly STRICT: "strict";
102
+ readonly STRUCTURE_ONLY: "structure-only";
103
+ };
104
+ /**
105
+ * @public
106
+ */
107
+ export type ValidationLevel = (typeof ValidationLevel)[keyof typeof ValidationLevel];
@@ -0,0 +1,81 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { HealthLakeServiceException as __BaseException } from "./HealthLakeServiceException";
3
+ /**
4
+ * <p>Access is denied. Your account is not authorized to perform this operation.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ Message?: string | undefined;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>The data store is in a transition state and the user requested action cannot be
18
+ * performed.</p>
19
+ * @public
20
+ */
21
+ export declare class ConflictException extends __BaseException {
22
+ readonly name: "ConflictException";
23
+ readonly $fault: "client";
24
+ Message?: string | undefined;
25
+ /**
26
+ * @internal
27
+ */
28
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
29
+ }
30
+ /**
31
+ * <p>An unknown internal error occurred in the service.</p>
32
+ * @public
33
+ */
34
+ export declare class InternalServerException extends __BaseException {
35
+ readonly name: "InternalServerException";
36
+ readonly $fault: "server";
37
+ Message?: string | undefined;
38
+ /**
39
+ * @internal
40
+ */
41
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
42
+ }
43
+ /**
44
+ * <p>The user has exceeded their maximum number of allowed calls to the given API. </p>
45
+ * @public
46
+ */
47
+ export declare class ThrottlingException extends __BaseException {
48
+ readonly name: "ThrottlingException";
49
+ readonly $fault: "client";
50
+ Message?: string | undefined;
51
+ /**
52
+ * @internal
53
+ */
54
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
55
+ }
56
+ /**
57
+ * <p>The user input parameter was invalid.</p>
58
+ * @public
59
+ */
60
+ export declare class ValidationException extends __BaseException {
61
+ readonly name: "ValidationException";
62
+ readonly $fault: "client";
63
+ Message?: string | undefined;
64
+ /**
65
+ * @internal
66
+ */
67
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
68
+ }
69
+ /**
70
+ * <p>The requested data store was not found.</p>
71
+ * @public
72
+ */
73
+ export declare class ResourceNotFoundException extends __BaseException {
74
+ readonly name: "ResourceNotFoundException";
75
+ readonly $fault: "client";
76
+ Message?: string | undefined;
77
+ /**
78
+ * @internal
79
+ */
80
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
81
+ }
@@ -1,68 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { HealthLakeServiceException as __BaseException } from "./HealthLakeServiceException";
3
- /**
4
- * <p>Access is denied. Your account is not authorized to perform this operation.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- Message?: string | undefined;
11
- /**
12
- * @internal
13
- */
14
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
- }
16
- /**
17
- * @public
18
- * @enum
19
- */
20
- export declare const AuthorizationStrategy: {
21
- readonly AWS_AUTH: "AWS_AUTH";
22
- readonly SMARTV1: "SMART_ON_FHIR_V1";
23
- readonly SMART_ON_FHIR: "SMART_ON_FHIR";
24
- };
25
- /**
26
- * @public
27
- */
28
- export type AuthorizationStrategy = (typeof AuthorizationStrategy)[keyof typeof AuthorizationStrategy];
29
- /**
30
- * @public
31
- * @enum
32
- */
33
- export declare const CmkType: {
34
- readonly AO_CMK: "AWS_OWNED_KMS_KEY";
35
- readonly CM_CMK: "CUSTOMER_MANAGED_KMS_KEY";
36
- };
37
- /**
38
- * @public
39
- */
40
- export type CmkType = (typeof CmkType)[keyof typeof CmkType];
41
- /**
42
- * <p>The data store is in a transition state and the user requested action cannot be
43
- * performed.</p>
44
- * @public
45
- */
46
- export declare class ConflictException extends __BaseException {
47
- readonly name: "ConflictException";
48
- readonly $fault: "client";
49
- Message?: string | undefined;
50
- /**
51
- * @internal
52
- */
53
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
54
- }
55
- /**
56
- * @public
57
- * @enum
58
- */
59
- export declare const FHIRVersion: {
60
- readonly R4: "R4";
61
- };
62
- /**
63
- * @public
64
- */
65
- export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion];
1
+ import { AuthorizationStrategy, CmkType, DatastoreStatus, ErrorCategory, FHIRVersion, JobStatus, PreloadDataType, ValidationLevel } from "./enums";
66
2
  /**
67
3
  * <p>The identity provider configuration selected when the data store was created.</p>
68
4
  * @public
@@ -131,17 +67,6 @@ export interface IdentityProviderConfiguration {
131
67
  */
132
68
  IdpLambdaArn?: string | undefined;
133
69
  }
134
- /**
135
- * @public
136
- * @enum
137
- */
138
- export declare const PreloadDataType: {
139
- readonly SYNTHEA: "SYNTHEA";
140
- };
141
- /**
142
- * @public
143
- */
144
- export type PreloadDataType = (typeof PreloadDataType)[keyof typeof PreloadDataType];
145
70
  /**
146
71
  * <p>The input properties for the preloaded (Synthea) data store.</p>
147
72
  * @public
@@ -244,21 +169,6 @@ export interface CreateFHIRDatastoreRequest {
244
169
  */
245
170
  IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
246
171
  }
247
- /**
248
- * @public
249
- * @enum
250
- */
251
- export declare const DatastoreStatus: {
252
- readonly ACTIVE: "ACTIVE";
253
- readonly CREATE_FAILED: "CREATE_FAILED";
254
- readonly CREATING: "CREATING";
255
- readonly DELETED: "DELETED";
256
- readonly DELETING: "DELETING";
257
- };
258
- /**
259
- * @public
260
- */
261
- export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
262
172
  /**
263
173
  * @public
264
174
  */
@@ -284,45 +194,6 @@ export interface CreateFHIRDatastoreResponse {
284
194
  */
285
195
  DatastoreEndpoint: string | undefined;
286
196
  }
287
- /**
288
- * <p>An unknown internal error occurred in the service.</p>
289
- * @public
290
- */
291
- export declare class InternalServerException extends __BaseException {
292
- readonly name: "InternalServerException";
293
- readonly $fault: "server";
294
- Message?: string | undefined;
295
- /**
296
- * @internal
297
- */
298
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
299
- }
300
- /**
301
- * <p>The user has exceeded their maximum number of allowed calls to the given API. </p>
302
- * @public
303
- */
304
- export declare class ThrottlingException extends __BaseException {
305
- readonly name: "ThrottlingException";
306
- readonly $fault: "client";
307
- Message?: string | undefined;
308
- /**
309
- * @internal
310
- */
311
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
312
- }
313
- /**
314
- * <p>The user input parameter was invalid.</p>
315
- * @public
316
- */
317
- export declare class ValidationException extends __BaseException {
318
- readonly name: "ValidationException";
319
- readonly $fault: "client";
320
- Message?: string | undefined;
321
- /**
322
- * @internal
323
- */
324
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
325
- }
326
197
  /**
327
198
  * <p>The filters applied to a data store query.</p>
328
199
  * @public
@@ -351,18 +222,6 @@ export interface DatastoreFilter {
351
222
  */
352
223
  CreatedAfter?: Date | undefined;
353
224
  }
354
- /**
355
- * @public
356
- * @enum
357
- */
358
- export declare const ErrorCategory: {
359
- readonly NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR";
360
- readonly RETRYABLE_ERROR: "RETRYABLE_ERROR";
361
- };
362
- /**
363
- * @public
364
- */
365
- export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
366
225
  /**
367
226
  * <p>The error information for <code>CreateFHIRDatastore</code> and
368
227
  * <code>DeleteFHIRDatastore</code> actions.</p>
@@ -478,19 +337,6 @@ export interface DeleteFHIRDatastoreResponse {
478
337
  */
479
338
  DatastoreEndpoint: string | undefined;
480
339
  }
481
- /**
482
- * <p>The requested data store was not found.</p>
483
- * @public
484
- */
485
- export declare class ResourceNotFoundException extends __BaseException {
486
- readonly name: "ResourceNotFoundException";
487
- readonly $fault: "client";
488
- Message?: string | undefined;
489
- /**
490
- * @internal
491
- */
492
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
493
- }
494
340
  /**
495
341
  * @public
496
342
  */
@@ -526,26 +372,6 @@ export interface DescribeFHIRExportJobRequest {
526
372
  */
527
373
  JobId: string | undefined;
528
374
  }
529
- /**
530
- * @public
531
- * @enum
532
- */
533
- export declare const JobStatus: {
534
- readonly CANCEL_COMPLETED: "CANCEL_COMPLETED";
535
- readonly CANCEL_FAILED: "CANCEL_FAILED";
536
- readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
537
- readonly CANCEL_SUBMITTED: "CANCEL_SUBMITTED";
538
- readonly COMPLETED: "COMPLETED";
539
- readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
540
- readonly FAILED: "FAILED";
541
- readonly IN_PROGRESS: "IN_PROGRESS";
542
- readonly QUEUED: "QUEUED";
543
- readonly SUBMITTED: "SUBMITTED";
544
- };
545
- /**
546
- * @public
547
- */
548
- export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
549
375
  /**
550
376
  * <p>The configuration of the S3 bucket for either an import or export job. This includes
551
377
  * assigning access permissions.</p>
@@ -754,19 +580,6 @@ export interface JobProgressReport {
754
580
  */
755
581
  Throughput?: number | undefined;
756
582
  }
757
- /**
758
- * @public
759
- * @enum
760
- */
761
- export declare const ValidationLevel: {
762
- readonly MINIMAL: "minimal";
763
- readonly STRICT: "strict";
764
- readonly STRUCTURE_ONLY: "structure-only";
765
- };
766
- /**
767
- * @public
768
- */
769
- export type ValidationLevel = (typeof ValidationLevel)[keyof typeof ValidationLevel];
770
583
  /**
771
584
  * <p>The import job properties.</p>
772
585
  * @public
@@ -6,5 +6,7 @@ export { HealthLakeExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./waiters";
9
- export * from "./models";
9
+ export * from "./models/enums";
10
+ export * from "./models/errors";
11
+ export * from "./models/models_0";
10
12
  export { HealthLakeServiceException } from "./models/HealthLakeServiceException";
@@ -0,0 +1,55 @@
1
+ export declare const AuthorizationStrategy: {
2
+ readonly AWS_AUTH: "AWS_AUTH";
3
+ readonly SMARTV1: "SMART_ON_FHIR_V1";
4
+ readonly SMART_ON_FHIR: "SMART_ON_FHIR";
5
+ };
6
+ export type AuthorizationStrategy =
7
+ (typeof AuthorizationStrategy)[keyof typeof AuthorizationStrategy];
8
+ export declare const CmkType: {
9
+ readonly AO_CMK: "AWS_OWNED_KMS_KEY";
10
+ readonly CM_CMK: "CUSTOMER_MANAGED_KMS_KEY";
11
+ };
12
+ export type CmkType = (typeof CmkType)[keyof typeof CmkType];
13
+ export declare const FHIRVersion: {
14
+ readonly R4: "R4";
15
+ };
16
+ export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion];
17
+ export declare const PreloadDataType: {
18
+ readonly SYNTHEA: "SYNTHEA";
19
+ };
20
+ export type PreloadDataType =
21
+ (typeof PreloadDataType)[keyof typeof PreloadDataType];
22
+ export declare const DatastoreStatus: {
23
+ readonly ACTIVE: "ACTIVE";
24
+ readonly CREATE_FAILED: "CREATE_FAILED";
25
+ readonly CREATING: "CREATING";
26
+ readonly DELETED: "DELETED";
27
+ readonly DELETING: "DELETING";
28
+ };
29
+ export type DatastoreStatus =
30
+ (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
31
+ export declare const ErrorCategory: {
32
+ readonly NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR";
33
+ readonly RETRYABLE_ERROR: "RETRYABLE_ERROR";
34
+ };
35
+ export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
36
+ export declare const JobStatus: {
37
+ readonly CANCEL_COMPLETED: "CANCEL_COMPLETED";
38
+ readonly CANCEL_FAILED: "CANCEL_FAILED";
39
+ readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
40
+ readonly CANCEL_SUBMITTED: "CANCEL_SUBMITTED";
41
+ readonly COMPLETED: "COMPLETED";
42
+ readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
43
+ readonly FAILED: "FAILED";
44
+ readonly IN_PROGRESS: "IN_PROGRESS";
45
+ readonly QUEUED: "QUEUED";
46
+ readonly SUBMITTED: "SUBMITTED";
47
+ };
48
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
49
+ export declare const ValidationLevel: {
50
+ readonly MINIMAL: "minimal";
51
+ readonly STRICT: "strict";
52
+ readonly STRUCTURE_ONLY: "structure-only";
53
+ };
54
+ export type ValidationLevel =
55
+ (typeof ValidationLevel)[keyof typeof ValidationLevel];
@@ -0,0 +1,48 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { HealthLakeServiceException as __BaseException } from "./HealthLakeServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare class ConflictException extends __BaseException {
12
+ readonly name: "ConflictException";
13
+ readonly $fault: "client";
14
+ Message?: string | undefined;
15
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
16
+ }
17
+ export declare class InternalServerException extends __BaseException {
18
+ readonly name: "InternalServerException";
19
+ readonly $fault: "server";
20
+ Message?: string | undefined;
21
+ constructor(
22
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
23
+ );
24
+ }
25
+ export declare class ThrottlingException extends __BaseException {
26
+ readonly name: "ThrottlingException";
27
+ readonly $fault: "client";
28
+ Message?: string | undefined;
29
+ constructor(
30
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
31
+ );
32
+ }
33
+ export declare class ValidationException extends __BaseException {
34
+ readonly name: "ValidationException";
35
+ readonly $fault: "client";
36
+ Message?: string | undefined;
37
+ constructor(
38
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
39
+ );
40
+ }
41
+ export declare class ResourceNotFoundException extends __BaseException {
42
+ readonly name: "ResourceNotFoundException";
43
+ readonly $fault: "client";
44
+ Message?: string | undefined;
45
+ constructor(
46
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
47
+ );
48
+ }
@@ -1,46 +1,19 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { HealthLakeServiceException as __BaseException } from "./HealthLakeServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
- );
10
- }
11
- export declare const AuthorizationStrategy: {
12
- readonly AWS_AUTH: "AWS_AUTH";
13
- readonly SMARTV1: "SMART_ON_FHIR_V1";
14
- readonly SMART_ON_FHIR: "SMART_ON_FHIR";
15
- };
16
- export type AuthorizationStrategy =
17
- (typeof AuthorizationStrategy)[keyof typeof AuthorizationStrategy];
18
- export declare const CmkType: {
19
- readonly AO_CMK: "AWS_OWNED_KMS_KEY";
20
- readonly CM_CMK: "CUSTOMER_MANAGED_KMS_KEY";
21
- };
22
- export type CmkType = (typeof CmkType)[keyof typeof CmkType];
23
- export declare class ConflictException extends __BaseException {
24
- readonly name: "ConflictException";
25
- readonly $fault: "client";
26
- Message?: string | undefined;
27
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
28
- }
29
- export declare const FHIRVersion: {
30
- readonly R4: "R4";
31
- };
32
- export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion];
1
+ import {
2
+ AuthorizationStrategy,
3
+ CmkType,
4
+ DatastoreStatus,
5
+ ErrorCategory,
6
+ FHIRVersion,
7
+ JobStatus,
8
+ PreloadDataType,
9
+ ValidationLevel,
10
+ } from "./enums";
33
11
  export interface IdentityProviderConfiguration {
34
12
  AuthorizationStrategy: AuthorizationStrategy | undefined;
35
13
  FineGrainedAuthorizationEnabled?: boolean | undefined;
36
14
  Metadata?: string | undefined;
37
15
  IdpLambdaArn?: string | undefined;
38
16
  }
39
- export declare const PreloadDataType: {
40
- readonly SYNTHEA: "SYNTHEA";
41
- };
42
- export type PreloadDataType =
43
- (typeof PreloadDataType)[keyof typeof PreloadDataType];
44
17
  export interface PreloadDataConfig {
45
18
  PreloadDataType: PreloadDataType | undefined;
46
19
  }
@@ -64,56 +37,18 @@ export interface CreateFHIRDatastoreRequest {
64
37
  Tags?: Tag[] | undefined;
65
38
  IdentityProviderConfiguration?: IdentityProviderConfiguration | undefined;
66
39
  }
67
- export declare const DatastoreStatus: {
68
- readonly ACTIVE: "ACTIVE";
69
- readonly CREATE_FAILED: "CREATE_FAILED";
70
- readonly CREATING: "CREATING";
71
- readonly DELETED: "DELETED";
72
- readonly DELETING: "DELETING";
73
- };
74
- export type DatastoreStatus =
75
- (typeof DatastoreStatus)[keyof typeof DatastoreStatus];
76
40
  export interface CreateFHIRDatastoreResponse {
77
41
  DatastoreId: string | undefined;
78
42
  DatastoreArn: string | undefined;
79
43
  DatastoreStatus: DatastoreStatus | undefined;
80
44
  DatastoreEndpoint: string | undefined;
81
45
  }
82
- export declare class InternalServerException extends __BaseException {
83
- readonly name: "InternalServerException";
84
- readonly $fault: "server";
85
- Message?: string | undefined;
86
- constructor(
87
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
88
- );
89
- }
90
- export declare class ThrottlingException extends __BaseException {
91
- readonly name: "ThrottlingException";
92
- readonly $fault: "client";
93
- Message?: string | undefined;
94
- constructor(
95
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
96
- );
97
- }
98
- export declare class ValidationException extends __BaseException {
99
- readonly name: "ValidationException";
100
- readonly $fault: "client";
101
- Message?: string | undefined;
102
- constructor(
103
- opts: __ExceptionOptionType<ValidationException, __BaseException>
104
- );
105
- }
106
46
  export interface DatastoreFilter {
107
47
  DatastoreName?: string | undefined;
108
48
  DatastoreStatus?: DatastoreStatus | undefined;
109
49
  CreatedBefore?: Date | undefined;
110
50
  CreatedAfter?: Date | undefined;
111
51
  }
112
- export declare const ErrorCategory: {
113
- readonly NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR";
114
- readonly RETRYABLE_ERROR: "RETRYABLE_ERROR";
115
- };
116
- export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory];
117
52
  export interface ErrorCause {
118
53
  ErrorMessage?: string | undefined;
119
54
  ErrorCategory?: ErrorCategory | undefined;
@@ -140,14 +75,6 @@ export interface DeleteFHIRDatastoreResponse {
140
75
  DatastoreStatus: DatastoreStatus | undefined;
141
76
  DatastoreEndpoint: string | undefined;
142
77
  }
143
- export declare class ResourceNotFoundException extends __BaseException {
144
- readonly name: "ResourceNotFoundException";
145
- readonly $fault: "client";
146
- Message?: string | undefined;
147
- constructor(
148
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
149
- );
150
- }
151
78
  export interface DescribeFHIRDatastoreRequest {
152
79
  DatastoreId: string | undefined;
153
80
  }
@@ -158,19 +85,6 @@ export interface DescribeFHIRExportJobRequest {
158
85
  DatastoreId: string | undefined;
159
86
  JobId: string | undefined;
160
87
  }
161
- export declare const JobStatus: {
162
- readonly CANCEL_COMPLETED: "CANCEL_COMPLETED";
163
- readonly CANCEL_FAILED: "CANCEL_FAILED";
164
- readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS";
165
- readonly CANCEL_SUBMITTED: "CANCEL_SUBMITTED";
166
- readonly COMPLETED: "COMPLETED";
167
- readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
168
- readonly FAILED: "FAILED";
169
- readonly IN_PROGRESS: "IN_PROGRESS";
170
- readonly QUEUED: "QUEUED";
171
- readonly SUBMITTED: "SUBMITTED";
172
- };
173
- export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
174
88
  export interface S3Configuration {
175
89
  S3Uri: string | undefined;
176
90
  KmsKeyId: string | undefined;
@@ -237,13 +151,6 @@ export interface JobProgressReport {
237
151
  TotalNumberOfFilesReadWithCustomerError?: number | undefined;
238
152
  Throughput?: number | undefined;
239
153
  }
240
- export declare const ValidationLevel: {
241
- readonly MINIMAL: "minimal";
242
- readonly STRICT: "strict";
243
- readonly STRUCTURE_ONLY: "structure-only";
244
- };
245
- export type ValidationLevel =
246
- (typeof ValidationLevel)[keyof typeof ValidationLevel];
247
154
  export interface ImportJobProperties {
248
155
  JobId: string | undefined;
249
156
  JobName?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-healthlake",
3
3
  "description": "AWS SDK for JavaScript Healthlake 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-healthlake",
@@ -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";