@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.
@@ -0,0 +1,492 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const EnforceMessageSigningType: {
6
+ readonly DISABLED: "DISABLED";
7
+ readonly ENABLED: "ENABLED";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type EnforceMessageSigningType = (typeof EnforceMessageSigningType)[keyof typeof EnforceMessageSigningType];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const PreserveFilenameType: {
18
+ readonly DISABLED: "DISABLED";
19
+ readonly ENABLED: "ENABLED";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type PreserveFilenameType = (typeof PreserveFilenameType)[keyof typeof PreserveFilenameType];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const AgreementStatusType: {
30
+ readonly ACTIVE: "ACTIVE";
31
+ readonly INACTIVE: "INACTIVE";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type AgreementStatusType = (typeof AgreementStatusType)[keyof typeof AgreementStatusType];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const CompressionEnum: {
42
+ readonly DISABLED: "DISABLED";
43
+ readonly ZLIB: "ZLIB";
44
+ };
45
+ /**
46
+ * @public
47
+ */
48
+ export type CompressionEnum = (typeof CompressionEnum)[keyof typeof CompressionEnum];
49
+ /**
50
+ * @public
51
+ * @enum
52
+ */
53
+ export declare const EncryptionAlg: {
54
+ readonly AES128_CBC: "AES128_CBC";
55
+ readonly AES192_CBC: "AES192_CBC";
56
+ readonly AES256_CBC: "AES256_CBC";
57
+ readonly DES_EDE3_CBC: "DES_EDE3_CBC";
58
+ readonly NONE: "NONE";
59
+ };
60
+ /**
61
+ * @public
62
+ */
63
+ export type EncryptionAlg = (typeof EncryptionAlg)[keyof typeof EncryptionAlg];
64
+ /**
65
+ * @public
66
+ * @enum
67
+ */
68
+ export declare const MdnResponse: {
69
+ readonly NONE: "NONE";
70
+ readonly SYNC: "SYNC";
71
+ };
72
+ /**
73
+ * @public
74
+ */
75
+ export type MdnResponse = (typeof MdnResponse)[keyof typeof MdnResponse];
76
+ /**
77
+ * @public
78
+ * @enum
79
+ */
80
+ export declare const MdnSigningAlg: {
81
+ readonly DEFAULT: "DEFAULT";
82
+ readonly NONE: "NONE";
83
+ readonly SHA1: "SHA1";
84
+ readonly SHA256: "SHA256";
85
+ readonly SHA384: "SHA384";
86
+ readonly SHA512: "SHA512";
87
+ };
88
+ /**
89
+ * @public
90
+ */
91
+ export type MdnSigningAlg = (typeof MdnSigningAlg)[keyof typeof MdnSigningAlg];
92
+ /**
93
+ * @public
94
+ * @enum
95
+ */
96
+ export declare const PreserveContentType: {
97
+ readonly DISABLED: "DISABLED";
98
+ readonly ENABLED: "ENABLED";
99
+ };
100
+ /**
101
+ * @public
102
+ */
103
+ export type PreserveContentType = (typeof PreserveContentType)[keyof typeof PreserveContentType];
104
+ /**
105
+ * @public
106
+ * @enum
107
+ */
108
+ export declare const SigningAlg: {
109
+ readonly NONE: "NONE";
110
+ readonly SHA1: "SHA1";
111
+ readonly SHA256: "SHA256";
112
+ readonly SHA384: "SHA384";
113
+ readonly SHA512: "SHA512";
114
+ };
115
+ /**
116
+ * @public
117
+ */
118
+ export type SigningAlg = (typeof SigningAlg)[keyof typeof SigningAlg];
119
+ /**
120
+ * @public
121
+ * @enum
122
+ */
123
+ export declare const As2Transport: {
124
+ readonly HTTP: "HTTP";
125
+ };
126
+ /**
127
+ * @public
128
+ */
129
+ export type As2Transport = (typeof As2Transport)[keyof typeof As2Transport];
130
+ /**
131
+ * @public
132
+ * @enum
133
+ */
134
+ export declare const CertificateStatusType: {
135
+ readonly ACTIVE: "ACTIVE";
136
+ readonly INACTIVE: "INACTIVE";
137
+ readonly PENDING_ROTATION: "PENDING_ROTATION";
138
+ };
139
+ /**
140
+ * @public
141
+ */
142
+ export type CertificateStatusType = (typeof CertificateStatusType)[keyof typeof CertificateStatusType];
143
+ /**
144
+ * @public
145
+ * @enum
146
+ */
147
+ export declare const CertificateType: {
148
+ readonly CERTIFICATE: "CERTIFICATE";
149
+ readonly CERTIFICATE_WITH_PRIVATE_KEY: "CERTIFICATE_WITH_PRIVATE_KEY";
150
+ };
151
+ /**
152
+ * @public
153
+ */
154
+ export type CertificateType = (typeof CertificateType)[keyof typeof CertificateType];
155
+ /**
156
+ * @public
157
+ * @enum
158
+ */
159
+ export declare const CertificateUsageType: {
160
+ readonly ENCRYPTION: "ENCRYPTION";
161
+ readonly SIGNING: "SIGNING";
162
+ readonly TLS: "TLS";
163
+ };
164
+ /**
165
+ * @public
166
+ */
167
+ export type CertificateUsageType = (typeof CertificateUsageType)[keyof typeof CertificateUsageType];
168
+ /**
169
+ * @public
170
+ * @enum
171
+ */
172
+ export declare const ConnectorEgressType: {
173
+ readonly SERVICE_MANAGED: "SERVICE_MANAGED";
174
+ readonly VPC_LATTICE: "VPC_LATTICE";
175
+ };
176
+ /**
177
+ * @public
178
+ */
179
+ export type ConnectorEgressType = (typeof ConnectorEgressType)[keyof typeof ConnectorEgressType];
180
+ /**
181
+ * @public
182
+ * @enum
183
+ */
184
+ export declare const TransferTableStatus: {
185
+ readonly COMPLETED: "COMPLETED";
186
+ readonly FAILED: "FAILED";
187
+ readonly IN_PROGRESS: "IN_PROGRESS";
188
+ readonly QUEUED: "QUEUED";
189
+ };
190
+ /**
191
+ * @public
192
+ */
193
+ export type TransferTableStatus = (typeof TransferTableStatus)[keyof typeof TransferTableStatus];
194
+ /**
195
+ * @public
196
+ * @enum
197
+ */
198
+ export declare const ConnectorStatus: {
199
+ readonly ACTIVE: "ACTIVE";
200
+ readonly ERRORED: "ERRORED";
201
+ readonly PENDING: "PENDING";
202
+ };
203
+ /**
204
+ * @public
205
+ */
206
+ export type ConnectorStatus = (typeof ConnectorStatus)[keyof typeof ConnectorStatus];
207
+ /**
208
+ * @public
209
+ * @enum
210
+ */
211
+ export declare const OverwriteExisting: {
212
+ readonly FALSE: "FALSE";
213
+ readonly TRUE: "TRUE";
214
+ };
215
+ /**
216
+ * @public
217
+ */
218
+ export type OverwriteExisting = (typeof OverwriteExisting)[keyof typeof OverwriteExisting];
219
+ /**
220
+ * @public
221
+ * @enum
222
+ */
223
+ export declare const MapType: {
224
+ readonly DIRECTORY: "DIRECTORY";
225
+ readonly FILE: "FILE";
226
+ };
227
+ /**
228
+ * @public
229
+ */
230
+ export type MapType = (typeof MapType)[keyof typeof MapType];
231
+ /**
232
+ * @public
233
+ * @enum
234
+ */
235
+ export declare const HomeDirectoryType: {
236
+ readonly LOGICAL: "LOGICAL";
237
+ readonly PATH: "PATH";
238
+ };
239
+ /**
240
+ * @public
241
+ */
242
+ export type HomeDirectoryType = (typeof HomeDirectoryType)[keyof typeof HomeDirectoryType];
243
+ /**
244
+ * @public
245
+ * @enum
246
+ */
247
+ export declare const ProfileType: {
248
+ readonly LOCAL: "LOCAL";
249
+ readonly PARTNER: "PARTNER";
250
+ };
251
+ /**
252
+ * @public
253
+ */
254
+ export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
255
+ /**
256
+ * @public
257
+ * @enum
258
+ */
259
+ export declare const Domain: {
260
+ readonly EFS: "EFS";
261
+ readonly S3: "S3";
262
+ };
263
+ /**
264
+ * @public
265
+ */
266
+ export type Domain = (typeof Domain)[keyof typeof Domain];
267
+ /**
268
+ * @public
269
+ * @enum
270
+ */
271
+ export declare const EndpointType: {
272
+ readonly PUBLIC: "PUBLIC";
273
+ readonly VPC: "VPC";
274
+ readonly VPC_ENDPOINT: "VPC_ENDPOINT";
275
+ };
276
+ /**
277
+ * @public
278
+ */
279
+ export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
280
+ /**
281
+ * @public
282
+ * @enum
283
+ */
284
+ export declare const SftpAuthenticationMethods: {
285
+ readonly PASSWORD: "PASSWORD";
286
+ readonly PUBLIC_KEY: "PUBLIC_KEY";
287
+ readonly PUBLIC_KEY_AND_PASSWORD: "PUBLIC_KEY_AND_PASSWORD";
288
+ readonly PUBLIC_KEY_OR_PASSWORD: "PUBLIC_KEY_OR_PASSWORD";
289
+ };
290
+ /**
291
+ * @public
292
+ */
293
+ export type SftpAuthenticationMethods = (typeof SftpAuthenticationMethods)[keyof typeof SftpAuthenticationMethods];
294
+ /**
295
+ * @public
296
+ * @enum
297
+ */
298
+ export declare const IdentityProviderType: {
299
+ readonly API_GATEWAY: "API_GATEWAY";
300
+ readonly AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE";
301
+ readonly AWS_LAMBDA: "AWS_LAMBDA";
302
+ readonly SERVICE_MANAGED: "SERVICE_MANAGED";
303
+ };
304
+ /**
305
+ * @public
306
+ */
307
+ export type IdentityProviderType = (typeof IdentityProviderType)[keyof typeof IdentityProviderType];
308
+ /**
309
+ * @public
310
+ * @enum
311
+ */
312
+ export declare const IpAddressType: {
313
+ readonly DUALSTACK: "DUALSTACK";
314
+ readonly IPV4: "IPV4";
315
+ };
316
+ /**
317
+ * @public
318
+ */
319
+ export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
320
+ /**
321
+ * @public
322
+ * @enum
323
+ */
324
+ export declare const SetStatOption: {
325
+ readonly DEFAULT: "DEFAULT";
326
+ readonly ENABLE_NO_OP: "ENABLE_NO_OP";
327
+ };
328
+ /**
329
+ * @public
330
+ */
331
+ export type SetStatOption = (typeof SetStatOption)[keyof typeof SetStatOption];
332
+ /**
333
+ * @public
334
+ * @enum
335
+ */
336
+ export declare const TlsSessionResumptionMode: {
337
+ readonly DISABLED: "DISABLED";
338
+ readonly ENABLED: "ENABLED";
339
+ readonly ENFORCED: "ENFORCED";
340
+ };
341
+ /**
342
+ * @public
343
+ */
344
+ export type TlsSessionResumptionMode = (typeof TlsSessionResumptionMode)[keyof typeof TlsSessionResumptionMode];
345
+ /**
346
+ * @public
347
+ * @enum
348
+ */
349
+ export declare const Protocol: {
350
+ readonly AS2: "AS2";
351
+ readonly FTP: "FTP";
352
+ readonly FTPS: "FTPS";
353
+ readonly SFTP: "SFTP";
354
+ };
355
+ /**
356
+ * @public
357
+ */
358
+ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
359
+ /**
360
+ * @public
361
+ * @enum
362
+ */
363
+ export declare const DirectoryListingOptimization: {
364
+ readonly DISABLED: "DISABLED";
365
+ readonly ENABLED: "ENABLED";
366
+ };
367
+ /**
368
+ * @public
369
+ */
370
+ export type DirectoryListingOptimization = (typeof DirectoryListingOptimization)[keyof typeof DirectoryListingOptimization];
371
+ /**
372
+ * @public
373
+ * @enum
374
+ */
375
+ export declare const WebAppEndpointPolicy: {
376
+ readonly FIPS: "FIPS";
377
+ readonly STANDARD: "STANDARD";
378
+ };
379
+ /**
380
+ * @public
381
+ */
382
+ export type WebAppEndpointPolicy = (typeof WebAppEndpointPolicy)[keyof typeof WebAppEndpointPolicy];
383
+ /**
384
+ * @public
385
+ * @enum
386
+ */
387
+ export declare const EncryptionType: {
388
+ readonly PGP: "PGP";
389
+ };
390
+ /**
391
+ * @public
392
+ */
393
+ export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
394
+ /**
395
+ * @public
396
+ * @enum
397
+ */
398
+ export declare const WorkflowStepType: {
399
+ readonly COPY: "COPY";
400
+ readonly CUSTOM: "CUSTOM";
401
+ readonly DECRYPT: "DECRYPT";
402
+ readonly DELETE: "DELETE";
403
+ readonly TAG: "TAG";
404
+ };
405
+ /**
406
+ * @public
407
+ */
408
+ export type WorkflowStepType = (typeof WorkflowStepType)[keyof typeof WorkflowStepType];
409
+ /**
410
+ * @public
411
+ * @enum
412
+ */
413
+ export declare const CustomStepStatus: {
414
+ readonly FAILURE: "FAILURE";
415
+ readonly SUCCESS: "SUCCESS";
416
+ };
417
+ /**
418
+ * @public
419
+ */
420
+ export type CustomStepStatus = (typeof CustomStepStatus)[keyof typeof CustomStepStatus];
421
+ /**
422
+ * @public
423
+ * @enum
424
+ */
425
+ export declare const ExecutionErrorType: {
426
+ readonly ALREADY_EXISTS: "ALREADY_EXISTS";
427
+ readonly BAD_REQUEST: "BAD_REQUEST";
428
+ readonly CUSTOM_STEP_FAILED: "CUSTOM_STEP_FAILED";
429
+ readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
430
+ readonly NOT_FOUND: "NOT_FOUND";
431
+ readonly PERMISSION_DENIED: "PERMISSION_DENIED";
432
+ readonly THROTTLED: "THROTTLED";
433
+ readonly TIMEOUT: "TIMEOUT";
434
+ };
435
+ /**
436
+ * @public
437
+ */
438
+ export type ExecutionErrorType = (typeof ExecutionErrorType)[keyof typeof ExecutionErrorType];
439
+ /**
440
+ * @public
441
+ * @enum
442
+ */
443
+ export declare const ExecutionStatus: {
444
+ readonly COMPLETED: "COMPLETED";
445
+ readonly EXCEPTION: "EXCEPTION";
446
+ readonly HANDLING_EXCEPTION: "HANDLING_EXCEPTION";
447
+ readonly IN_PROGRESS: "IN_PROGRESS";
448
+ };
449
+ /**
450
+ * @public
451
+ */
452
+ export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
453
+ /**
454
+ * @public
455
+ * @enum
456
+ */
457
+ export declare const SecurityPolicyProtocol: {
458
+ readonly FTPS: "FTPS";
459
+ readonly SFTP: "SFTP";
460
+ };
461
+ /**
462
+ * @public
463
+ */
464
+ export type SecurityPolicyProtocol = (typeof SecurityPolicyProtocol)[keyof typeof SecurityPolicyProtocol];
465
+ /**
466
+ * @public
467
+ * @enum
468
+ */
469
+ export declare const SecurityPolicyResourceType: {
470
+ readonly CONNECTOR: "CONNECTOR";
471
+ readonly SERVER: "SERVER";
472
+ };
473
+ /**
474
+ * @public
475
+ */
476
+ export type SecurityPolicyResourceType = (typeof SecurityPolicyResourceType)[keyof typeof SecurityPolicyResourceType];
477
+ /**
478
+ * @public
479
+ * @enum
480
+ */
481
+ export declare const State: {
482
+ readonly OFFLINE: "OFFLINE";
483
+ readonly ONLINE: "ONLINE";
484
+ readonly STARTING: "STARTING";
485
+ readonly START_FAILED: "START_FAILED";
486
+ readonly STOPPING: "STOPPING";
487
+ readonly STOP_FAILED: "STOP_FAILED";
488
+ };
489
+ /**
490
+ * @public
491
+ */
492
+ export type State = (typeof State)[keyof typeof State];
@@ -0,0 +1,123 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { TransferServiceException as __BaseException } from "./TransferServiceException";
3
+ /**
4
+ * <p>You do not have sufficient access to perform this action.</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>This exception is thrown when an error occurs in the Transfer Family service.</p>
18
+ * @public
19
+ */
20
+ export declare class InternalServiceError extends __BaseException {
21
+ readonly name: "InternalServiceError";
22
+ readonly $fault: "server";
23
+ Message: string | undefined;
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
28
+ }
29
+ /**
30
+ * <p>This exception is thrown when the client submits a malformed request.</p>
31
+ * @public
32
+ */
33
+ export declare class InvalidRequestException extends __BaseException {
34
+ readonly name: "InvalidRequestException";
35
+ readonly $fault: "client";
36
+ Message: string | undefined;
37
+ /**
38
+ * @internal
39
+ */
40
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
41
+ }
42
+ /**
43
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
44
+ * @public
45
+ */
46
+ export declare class ResourceExistsException extends __BaseException {
47
+ readonly name: "ResourceExistsException";
48
+ readonly $fault: "client";
49
+ Message: string | undefined;
50
+ Resource: string | undefined;
51
+ ResourceType: string | undefined;
52
+ /**
53
+ * @internal
54
+ */
55
+ constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
56
+ }
57
+ /**
58
+ * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family service.</p>
59
+ * @public
60
+ */
61
+ export declare class ResourceNotFoundException extends __BaseException {
62
+ readonly name: "ResourceNotFoundException";
63
+ readonly $fault: "client";
64
+ Message: string | undefined;
65
+ Resource: string | undefined;
66
+ ResourceType: string | undefined;
67
+ /**
68
+ * @internal
69
+ */
70
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
71
+ }
72
+ /**
73
+ * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
74
+ * @public
75
+ */
76
+ export declare class ServiceUnavailableException extends __BaseException {
77
+ readonly name: "ServiceUnavailableException";
78
+ readonly $fault: "server";
79
+ Message?: string | undefined;
80
+ /**
81
+ * @internal
82
+ */
83
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
84
+ }
85
+ /**
86
+ * <p>The request was denied due to request throttling.</p>
87
+ * @public
88
+ */
89
+ export declare class ThrottlingException extends __BaseException {
90
+ readonly name: "ThrottlingException";
91
+ readonly $fault: "client";
92
+ RetryAfterSeconds?: string | undefined;
93
+ /**
94
+ * @internal
95
+ */
96
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
97
+ }
98
+ /**
99
+ * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
100
+ * @public
101
+ */
102
+ export declare class InvalidNextTokenException extends __BaseException {
103
+ readonly name: "InvalidNextTokenException";
104
+ readonly $fault: "client";
105
+ Message: string | undefined;
106
+ /**
107
+ * @internal
108
+ */
109
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
110
+ }
111
+ /**
112
+ * <p>This exception is thrown when the <code>UpdateServer</code> is called for a file transfer protocol-enabled server that has VPC as the endpoint type and the server's <code>VpcEndpointID</code> is not in the available state.</p>
113
+ * @public
114
+ */
115
+ export declare class ConflictException extends __BaseException {
116
+ readonly name: "ConflictException";
117
+ readonly $fault: "client";
118
+ Message: string | undefined;
119
+ /**
120
+ * @internal
121
+ */
122
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
123
+ }