@aws-sdk/client-transfer 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 +189 -188
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +188 -0
- package/dist-es/models/errors.js +135 -0
- package/dist-es/models/models_0.js +1 -323
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +492 -0
- package/dist-types/models/errors.d.ts +123 -0
- package/dist-types/models/models_0.d.ts +1 -615
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +251 -0
- package/dist-types/ts3.4/models/errors.d.ts +76 -0
- package/dist-types/ts3.4/models/models_0.d.ts +40 -327
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { TransferServiceException as __BaseException } from "./TransferServiceException";
|
|
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 InternalServiceError extends __BaseException {
|
|
17
|
+
name = "InternalServiceError";
|
|
18
|
+
$fault = "server";
|
|
19
|
+
Message;
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "InternalServiceError",
|
|
23
|
+
$fault: "server",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
27
|
+
this.Message = opts.Message;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export class InvalidRequestException extends __BaseException {
|
|
31
|
+
name = "InvalidRequestException";
|
|
32
|
+
$fault = "client";
|
|
33
|
+
Message;
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "InvalidRequestException",
|
|
37
|
+
$fault: "client",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
41
|
+
this.Message = opts.Message;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
export class ResourceExistsException extends __BaseException {
|
|
45
|
+
name = "ResourceExistsException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
Message;
|
|
48
|
+
Resource;
|
|
49
|
+
ResourceType;
|
|
50
|
+
constructor(opts) {
|
|
51
|
+
super({
|
|
52
|
+
name: "ResourceExistsException",
|
|
53
|
+
$fault: "client",
|
|
54
|
+
...opts,
|
|
55
|
+
});
|
|
56
|
+
Object.setPrototypeOf(this, ResourceExistsException.prototype);
|
|
57
|
+
this.Message = opts.Message;
|
|
58
|
+
this.Resource = opts.Resource;
|
|
59
|
+
this.ResourceType = opts.ResourceType;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
63
|
+
name = "ResourceNotFoundException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
Message;
|
|
66
|
+
Resource;
|
|
67
|
+
ResourceType;
|
|
68
|
+
constructor(opts) {
|
|
69
|
+
super({
|
|
70
|
+
name: "ResourceNotFoundException",
|
|
71
|
+
$fault: "client",
|
|
72
|
+
...opts,
|
|
73
|
+
});
|
|
74
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
75
|
+
this.Message = opts.Message;
|
|
76
|
+
this.Resource = opts.Resource;
|
|
77
|
+
this.ResourceType = opts.ResourceType;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
81
|
+
name = "ServiceUnavailableException";
|
|
82
|
+
$fault = "server";
|
|
83
|
+
Message;
|
|
84
|
+
constructor(opts) {
|
|
85
|
+
super({
|
|
86
|
+
name: "ServiceUnavailableException",
|
|
87
|
+
$fault: "server",
|
|
88
|
+
...opts,
|
|
89
|
+
});
|
|
90
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
91
|
+
this.Message = opts.Message;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
export class ThrottlingException extends __BaseException {
|
|
95
|
+
name = "ThrottlingException";
|
|
96
|
+
$fault = "client";
|
|
97
|
+
RetryAfterSeconds;
|
|
98
|
+
constructor(opts) {
|
|
99
|
+
super({
|
|
100
|
+
name: "ThrottlingException",
|
|
101
|
+
$fault: "client",
|
|
102
|
+
...opts,
|
|
103
|
+
});
|
|
104
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
105
|
+
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
export class InvalidNextTokenException extends __BaseException {
|
|
109
|
+
name = "InvalidNextTokenException";
|
|
110
|
+
$fault = "client";
|
|
111
|
+
Message;
|
|
112
|
+
constructor(opts) {
|
|
113
|
+
super({
|
|
114
|
+
name: "InvalidNextTokenException",
|
|
115
|
+
$fault: "client",
|
|
116
|
+
...opts,
|
|
117
|
+
});
|
|
118
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
119
|
+
this.Message = opts.Message;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
export class ConflictException extends __BaseException {
|
|
123
|
+
name = "ConflictException";
|
|
124
|
+
$fault = "client";
|
|
125
|
+
Message;
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
super({
|
|
128
|
+
name: "ConflictException",
|
|
129
|
+
$fault: "client",
|
|
130
|
+
...opts,
|
|
131
|
+
});
|
|
132
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
133
|
+
this.Message = opts.Message;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -1,323 +1 @@
|
|
|
1
|
-
|
|
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 EnforceMessageSigningType = {
|
|
17
|
-
DISABLED: "DISABLED",
|
|
18
|
-
ENABLED: "ENABLED",
|
|
19
|
-
};
|
|
20
|
-
export const PreserveFilenameType = {
|
|
21
|
-
DISABLED: "DISABLED",
|
|
22
|
-
ENABLED: "ENABLED",
|
|
23
|
-
};
|
|
24
|
-
export const AgreementStatusType = {
|
|
25
|
-
ACTIVE: "ACTIVE",
|
|
26
|
-
INACTIVE: "INACTIVE",
|
|
27
|
-
};
|
|
28
|
-
export class InternalServiceError extends __BaseException {
|
|
29
|
-
name = "InternalServiceError";
|
|
30
|
-
$fault = "server";
|
|
31
|
-
Message;
|
|
32
|
-
constructor(opts) {
|
|
33
|
-
super({
|
|
34
|
-
name: "InternalServiceError",
|
|
35
|
-
$fault: "server",
|
|
36
|
-
...opts,
|
|
37
|
-
});
|
|
38
|
-
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
39
|
-
this.Message = opts.Message;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
export class InvalidRequestException extends __BaseException {
|
|
43
|
-
name = "InvalidRequestException";
|
|
44
|
-
$fault = "client";
|
|
45
|
-
Message;
|
|
46
|
-
constructor(opts) {
|
|
47
|
-
super({
|
|
48
|
-
name: "InvalidRequestException",
|
|
49
|
-
$fault: "client",
|
|
50
|
-
...opts,
|
|
51
|
-
});
|
|
52
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
53
|
-
this.Message = opts.Message;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
export class ResourceExistsException extends __BaseException {
|
|
57
|
-
name = "ResourceExistsException";
|
|
58
|
-
$fault = "client";
|
|
59
|
-
Message;
|
|
60
|
-
Resource;
|
|
61
|
-
ResourceType;
|
|
62
|
-
constructor(opts) {
|
|
63
|
-
super({
|
|
64
|
-
name: "ResourceExistsException",
|
|
65
|
-
$fault: "client",
|
|
66
|
-
...opts,
|
|
67
|
-
});
|
|
68
|
-
Object.setPrototypeOf(this, ResourceExistsException.prototype);
|
|
69
|
-
this.Message = opts.Message;
|
|
70
|
-
this.Resource = opts.Resource;
|
|
71
|
-
this.ResourceType = opts.ResourceType;
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
75
|
-
name = "ResourceNotFoundException";
|
|
76
|
-
$fault = "client";
|
|
77
|
-
Message;
|
|
78
|
-
Resource;
|
|
79
|
-
ResourceType;
|
|
80
|
-
constructor(opts) {
|
|
81
|
-
super({
|
|
82
|
-
name: "ResourceNotFoundException",
|
|
83
|
-
$fault: "client",
|
|
84
|
-
...opts,
|
|
85
|
-
});
|
|
86
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
87
|
-
this.Message = opts.Message;
|
|
88
|
-
this.Resource = opts.Resource;
|
|
89
|
-
this.ResourceType = opts.ResourceType;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
export class ServiceUnavailableException extends __BaseException {
|
|
93
|
-
name = "ServiceUnavailableException";
|
|
94
|
-
$fault = "server";
|
|
95
|
-
Message;
|
|
96
|
-
constructor(opts) {
|
|
97
|
-
super({
|
|
98
|
-
name: "ServiceUnavailableException",
|
|
99
|
-
$fault: "server",
|
|
100
|
-
...opts,
|
|
101
|
-
});
|
|
102
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
103
|
-
this.Message = opts.Message;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
export class ThrottlingException extends __BaseException {
|
|
107
|
-
name = "ThrottlingException";
|
|
108
|
-
$fault = "client";
|
|
109
|
-
RetryAfterSeconds;
|
|
110
|
-
constructor(opts) {
|
|
111
|
-
super({
|
|
112
|
-
name: "ThrottlingException",
|
|
113
|
-
$fault: "client",
|
|
114
|
-
...opts,
|
|
115
|
-
});
|
|
116
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
117
|
-
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
export class InvalidNextTokenException extends __BaseException {
|
|
121
|
-
name = "InvalidNextTokenException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "InvalidNextTokenException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
export const CompressionEnum = {
|
|
135
|
-
DISABLED: "DISABLED",
|
|
136
|
-
ZLIB: "ZLIB",
|
|
137
|
-
};
|
|
138
|
-
export const EncryptionAlg = {
|
|
139
|
-
AES128_CBC: "AES128_CBC",
|
|
140
|
-
AES192_CBC: "AES192_CBC",
|
|
141
|
-
AES256_CBC: "AES256_CBC",
|
|
142
|
-
DES_EDE3_CBC: "DES_EDE3_CBC",
|
|
143
|
-
NONE: "NONE",
|
|
144
|
-
};
|
|
145
|
-
export const MdnResponse = {
|
|
146
|
-
NONE: "NONE",
|
|
147
|
-
SYNC: "SYNC",
|
|
148
|
-
};
|
|
149
|
-
export const MdnSigningAlg = {
|
|
150
|
-
DEFAULT: "DEFAULT",
|
|
151
|
-
NONE: "NONE",
|
|
152
|
-
SHA1: "SHA1",
|
|
153
|
-
SHA256: "SHA256",
|
|
154
|
-
SHA384: "SHA384",
|
|
155
|
-
SHA512: "SHA512",
|
|
156
|
-
};
|
|
157
|
-
export const PreserveContentType = {
|
|
158
|
-
DISABLED: "DISABLED",
|
|
159
|
-
ENABLED: "ENABLED",
|
|
160
|
-
};
|
|
161
|
-
export const SigningAlg = {
|
|
162
|
-
NONE: "NONE",
|
|
163
|
-
SHA1: "SHA1",
|
|
164
|
-
SHA256: "SHA256",
|
|
165
|
-
SHA384: "SHA384",
|
|
166
|
-
SHA512: "SHA512",
|
|
167
|
-
};
|
|
168
|
-
export const As2Transport = {
|
|
169
|
-
HTTP: "HTTP",
|
|
170
|
-
};
|
|
171
|
-
export const CertificateStatusType = {
|
|
172
|
-
ACTIVE: "ACTIVE",
|
|
173
|
-
INACTIVE: "INACTIVE",
|
|
174
|
-
PENDING_ROTATION: "PENDING_ROTATION",
|
|
175
|
-
};
|
|
176
|
-
export const CertificateType = {
|
|
177
|
-
CERTIFICATE: "CERTIFICATE",
|
|
178
|
-
CERTIFICATE_WITH_PRIVATE_KEY: "CERTIFICATE_WITH_PRIVATE_KEY",
|
|
179
|
-
};
|
|
180
|
-
export const CertificateUsageType = {
|
|
181
|
-
ENCRYPTION: "ENCRYPTION",
|
|
182
|
-
SIGNING: "SIGNING",
|
|
183
|
-
TLS: "TLS",
|
|
184
|
-
};
|
|
185
|
-
export class ConflictException extends __BaseException {
|
|
186
|
-
name = "ConflictException";
|
|
187
|
-
$fault = "client";
|
|
188
|
-
Message;
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "ConflictException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
196
|
-
this.Message = opts.Message;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
export const ConnectorEgressType = {
|
|
200
|
-
SERVICE_MANAGED: "SERVICE_MANAGED",
|
|
201
|
-
VPC_LATTICE: "VPC_LATTICE",
|
|
202
|
-
};
|
|
203
|
-
export const TransferTableStatus = {
|
|
204
|
-
COMPLETED: "COMPLETED",
|
|
205
|
-
FAILED: "FAILED",
|
|
206
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
207
|
-
QUEUED: "QUEUED",
|
|
208
|
-
};
|
|
209
|
-
export const ConnectorStatus = {
|
|
210
|
-
ACTIVE: "ACTIVE",
|
|
211
|
-
ERRORED: "ERRORED",
|
|
212
|
-
PENDING: "PENDING",
|
|
213
|
-
};
|
|
214
|
-
export const OverwriteExisting = {
|
|
215
|
-
FALSE: "FALSE",
|
|
216
|
-
TRUE: "TRUE",
|
|
217
|
-
};
|
|
218
|
-
export const MapType = {
|
|
219
|
-
DIRECTORY: "DIRECTORY",
|
|
220
|
-
FILE: "FILE",
|
|
221
|
-
};
|
|
222
|
-
export const HomeDirectoryType = {
|
|
223
|
-
LOGICAL: "LOGICAL",
|
|
224
|
-
PATH: "PATH",
|
|
225
|
-
};
|
|
226
|
-
export const ProfileType = {
|
|
227
|
-
LOCAL: "LOCAL",
|
|
228
|
-
PARTNER: "PARTNER",
|
|
229
|
-
};
|
|
230
|
-
export const Domain = {
|
|
231
|
-
EFS: "EFS",
|
|
232
|
-
S3: "S3",
|
|
233
|
-
};
|
|
234
|
-
export const EndpointType = {
|
|
235
|
-
PUBLIC: "PUBLIC",
|
|
236
|
-
VPC: "VPC",
|
|
237
|
-
VPC_ENDPOINT: "VPC_ENDPOINT",
|
|
238
|
-
};
|
|
239
|
-
export const SftpAuthenticationMethods = {
|
|
240
|
-
PASSWORD: "PASSWORD",
|
|
241
|
-
PUBLIC_KEY: "PUBLIC_KEY",
|
|
242
|
-
PUBLIC_KEY_AND_PASSWORD: "PUBLIC_KEY_AND_PASSWORD",
|
|
243
|
-
PUBLIC_KEY_OR_PASSWORD: "PUBLIC_KEY_OR_PASSWORD",
|
|
244
|
-
};
|
|
245
|
-
export const IdentityProviderType = {
|
|
246
|
-
API_GATEWAY: "API_GATEWAY",
|
|
247
|
-
AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE",
|
|
248
|
-
AWS_LAMBDA: "AWS_LAMBDA",
|
|
249
|
-
SERVICE_MANAGED: "SERVICE_MANAGED",
|
|
250
|
-
};
|
|
251
|
-
export const IpAddressType = {
|
|
252
|
-
DUALSTACK: "DUALSTACK",
|
|
253
|
-
IPV4: "IPV4",
|
|
254
|
-
};
|
|
255
|
-
export const SetStatOption = {
|
|
256
|
-
DEFAULT: "DEFAULT",
|
|
257
|
-
ENABLE_NO_OP: "ENABLE_NO_OP",
|
|
258
|
-
};
|
|
259
|
-
export const TlsSessionResumptionMode = {
|
|
260
|
-
DISABLED: "DISABLED",
|
|
261
|
-
ENABLED: "ENABLED",
|
|
262
|
-
ENFORCED: "ENFORCED",
|
|
263
|
-
};
|
|
264
|
-
export const Protocol = {
|
|
265
|
-
AS2: "AS2",
|
|
266
|
-
FTP: "FTP",
|
|
267
|
-
FTPS: "FTPS",
|
|
268
|
-
SFTP: "SFTP",
|
|
269
|
-
};
|
|
270
|
-
export const DirectoryListingOptimization = {
|
|
271
|
-
DISABLED: "DISABLED",
|
|
272
|
-
ENABLED: "ENABLED",
|
|
273
|
-
};
|
|
274
|
-
export const WebAppEndpointPolicy = {
|
|
275
|
-
FIPS: "FIPS",
|
|
276
|
-
STANDARD: "STANDARD",
|
|
277
|
-
};
|
|
278
|
-
export const EncryptionType = {
|
|
279
|
-
PGP: "PGP",
|
|
280
|
-
};
|
|
281
|
-
export const WorkflowStepType = {
|
|
282
|
-
COPY: "COPY",
|
|
283
|
-
CUSTOM: "CUSTOM",
|
|
284
|
-
DECRYPT: "DECRYPT",
|
|
285
|
-
DELETE: "DELETE",
|
|
286
|
-
TAG: "TAG",
|
|
287
|
-
};
|
|
288
|
-
export const CustomStepStatus = {
|
|
289
|
-
FAILURE: "FAILURE",
|
|
290
|
-
SUCCESS: "SUCCESS",
|
|
291
|
-
};
|
|
292
|
-
export const ExecutionErrorType = {
|
|
293
|
-
ALREADY_EXISTS: "ALREADY_EXISTS",
|
|
294
|
-
BAD_REQUEST: "BAD_REQUEST",
|
|
295
|
-
CUSTOM_STEP_FAILED: "CUSTOM_STEP_FAILED",
|
|
296
|
-
INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR",
|
|
297
|
-
NOT_FOUND: "NOT_FOUND",
|
|
298
|
-
PERMISSION_DENIED: "PERMISSION_DENIED",
|
|
299
|
-
THROTTLED: "THROTTLED",
|
|
300
|
-
TIMEOUT: "TIMEOUT",
|
|
301
|
-
};
|
|
302
|
-
export const ExecutionStatus = {
|
|
303
|
-
COMPLETED: "COMPLETED",
|
|
304
|
-
EXCEPTION: "EXCEPTION",
|
|
305
|
-
HANDLING_EXCEPTION: "HANDLING_EXCEPTION",
|
|
306
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
307
|
-
};
|
|
308
|
-
export const SecurityPolicyProtocol = {
|
|
309
|
-
FTPS: "FTPS",
|
|
310
|
-
SFTP: "SFTP",
|
|
311
|
-
};
|
|
312
|
-
export const SecurityPolicyResourceType = {
|
|
313
|
-
CONNECTOR: "CONNECTOR",
|
|
314
|
-
SERVER: "SERVER",
|
|
315
|
-
};
|
|
316
|
-
export const State = {
|
|
317
|
-
OFFLINE: "OFFLINE",
|
|
318
|
-
ONLINE: "ONLINE",
|
|
319
|
-
STARTING: "STARTING",
|
|
320
|
-
START_FAILED: "START_FAILED",
|
|
321
|
-
STOPPING: "STOPPING",
|
|
322
|
-
STOP_FAILED: "STOP_FAILED",
|
|
323
|
-
};
|
|
1
|
+
export {};
|
|
@@ -510,7 +510,7 @@ const _s = "server";
|
|
|
510
510
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.transfer";
|
|
511
511
|
const n0 = "com.amazonaws.transfer";
|
|
512
512
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
513
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServiceError as __InternalServiceError, InvalidNextTokenException as __InvalidNextTokenException, InvalidRequestException as __InvalidRequestException, ResourceExistsException as __ResourceExistsException, ResourceNotFoundException as __ResourceNotFoundException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, } from "../models/
|
|
513
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServiceError as __InternalServiceError, InvalidNextTokenException as __InvalidNextTokenException, InvalidRequestException as __InvalidRequestException, ResourceExistsException as __ResourceExistsException, ResourceNotFoundException as __ResourceNotFoundException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, } from "../models/errors";
|
|
514
514
|
import { TransferServiceException as __TransferServiceException } from "../models/TransferServiceException";
|
|
515
515
|
export var CertificateBodyType = [0, n0, _CBT, 8, 0];
|
|
516
516
|
export var CertificateChainType = [0, n0, _CCT, 8, 0];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -11,5 +11,7 @@ export type { TransferExtensionConfiguration } from "./extensionConfiguration";
|
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
13
|
export * from "./waiters";
|
|
14
|
-
export * from "./models";
|
|
14
|
+
export * from "./models/enums";
|
|
15
|
+
export * from "./models/errors";
|
|
16
|
+
export type * from "./models/models_0";
|
|
15
17
|
export { TransferServiceException } from "./models/TransferServiceException";
|