@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.
@@ -6,5 +6,7 @@ export { TransferExtensionConfiguration } 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 { TransferServiceException } from "./models/TransferServiceException";
@@ -0,0 +1,251 @@
1
+ export declare const EnforceMessageSigningType: {
2
+ readonly DISABLED: "DISABLED";
3
+ readonly ENABLED: "ENABLED";
4
+ };
5
+ export type EnforceMessageSigningType =
6
+ (typeof EnforceMessageSigningType)[keyof typeof EnforceMessageSigningType];
7
+ export declare const PreserveFilenameType: {
8
+ readonly DISABLED: "DISABLED";
9
+ readonly ENABLED: "ENABLED";
10
+ };
11
+ export type PreserveFilenameType =
12
+ (typeof PreserveFilenameType)[keyof typeof PreserveFilenameType];
13
+ export declare const AgreementStatusType: {
14
+ readonly ACTIVE: "ACTIVE";
15
+ readonly INACTIVE: "INACTIVE";
16
+ };
17
+ export type AgreementStatusType =
18
+ (typeof AgreementStatusType)[keyof typeof AgreementStatusType];
19
+ export declare const CompressionEnum: {
20
+ readonly DISABLED: "DISABLED";
21
+ readonly ZLIB: "ZLIB";
22
+ };
23
+ export type CompressionEnum =
24
+ (typeof CompressionEnum)[keyof typeof CompressionEnum];
25
+ export declare const EncryptionAlg: {
26
+ readonly AES128_CBC: "AES128_CBC";
27
+ readonly AES192_CBC: "AES192_CBC";
28
+ readonly AES256_CBC: "AES256_CBC";
29
+ readonly DES_EDE3_CBC: "DES_EDE3_CBC";
30
+ readonly NONE: "NONE";
31
+ };
32
+ export type EncryptionAlg = (typeof EncryptionAlg)[keyof typeof EncryptionAlg];
33
+ export declare const MdnResponse: {
34
+ readonly NONE: "NONE";
35
+ readonly SYNC: "SYNC";
36
+ };
37
+ export type MdnResponse = (typeof MdnResponse)[keyof typeof MdnResponse];
38
+ export declare const MdnSigningAlg: {
39
+ readonly DEFAULT: "DEFAULT";
40
+ readonly NONE: "NONE";
41
+ readonly SHA1: "SHA1";
42
+ readonly SHA256: "SHA256";
43
+ readonly SHA384: "SHA384";
44
+ readonly SHA512: "SHA512";
45
+ };
46
+ export type MdnSigningAlg = (typeof MdnSigningAlg)[keyof typeof MdnSigningAlg];
47
+ export declare const PreserveContentType: {
48
+ readonly DISABLED: "DISABLED";
49
+ readonly ENABLED: "ENABLED";
50
+ };
51
+ export type PreserveContentType =
52
+ (typeof PreserveContentType)[keyof typeof PreserveContentType];
53
+ export declare const SigningAlg: {
54
+ readonly NONE: "NONE";
55
+ readonly SHA1: "SHA1";
56
+ readonly SHA256: "SHA256";
57
+ readonly SHA384: "SHA384";
58
+ readonly SHA512: "SHA512";
59
+ };
60
+ export type SigningAlg = (typeof SigningAlg)[keyof typeof SigningAlg];
61
+ export declare const As2Transport: {
62
+ readonly HTTP: "HTTP";
63
+ };
64
+ export type As2Transport = (typeof As2Transport)[keyof typeof As2Transport];
65
+ export declare const CertificateStatusType: {
66
+ readonly ACTIVE: "ACTIVE";
67
+ readonly INACTIVE: "INACTIVE";
68
+ readonly PENDING_ROTATION: "PENDING_ROTATION";
69
+ };
70
+ export type CertificateStatusType =
71
+ (typeof CertificateStatusType)[keyof typeof CertificateStatusType];
72
+ export declare const CertificateType: {
73
+ readonly CERTIFICATE: "CERTIFICATE";
74
+ readonly CERTIFICATE_WITH_PRIVATE_KEY: "CERTIFICATE_WITH_PRIVATE_KEY";
75
+ };
76
+ export type CertificateType =
77
+ (typeof CertificateType)[keyof typeof CertificateType];
78
+ export declare const CertificateUsageType: {
79
+ readonly ENCRYPTION: "ENCRYPTION";
80
+ readonly SIGNING: "SIGNING";
81
+ readonly TLS: "TLS";
82
+ };
83
+ export type CertificateUsageType =
84
+ (typeof CertificateUsageType)[keyof typeof CertificateUsageType];
85
+ export declare const ConnectorEgressType: {
86
+ readonly SERVICE_MANAGED: "SERVICE_MANAGED";
87
+ readonly VPC_LATTICE: "VPC_LATTICE";
88
+ };
89
+ export type ConnectorEgressType =
90
+ (typeof ConnectorEgressType)[keyof typeof ConnectorEgressType];
91
+ export declare const TransferTableStatus: {
92
+ readonly COMPLETED: "COMPLETED";
93
+ readonly FAILED: "FAILED";
94
+ readonly IN_PROGRESS: "IN_PROGRESS";
95
+ readonly QUEUED: "QUEUED";
96
+ };
97
+ export type TransferTableStatus =
98
+ (typeof TransferTableStatus)[keyof typeof TransferTableStatus];
99
+ export declare const ConnectorStatus: {
100
+ readonly ACTIVE: "ACTIVE";
101
+ readonly ERRORED: "ERRORED";
102
+ readonly PENDING: "PENDING";
103
+ };
104
+ export type ConnectorStatus =
105
+ (typeof ConnectorStatus)[keyof typeof ConnectorStatus];
106
+ export declare const OverwriteExisting: {
107
+ readonly FALSE: "FALSE";
108
+ readonly TRUE: "TRUE";
109
+ };
110
+ export type OverwriteExisting =
111
+ (typeof OverwriteExisting)[keyof typeof OverwriteExisting];
112
+ export declare const MapType: {
113
+ readonly DIRECTORY: "DIRECTORY";
114
+ readonly FILE: "FILE";
115
+ };
116
+ export type MapType = (typeof MapType)[keyof typeof MapType];
117
+ export declare const HomeDirectoryType: {
118
+ readonly LOGICAL: "LOGICAL";
119
+ readonly PATH: "PATH";
120
+ };
121
+ export type HomeDirectoryType =
122
+ (typeof HomeDirectoryType)[keyof typeof HomeDirectoryType];
123
+ export declare const ProfileType: {
124
+ readonly LOCAL: "LOCAL";
125
+ readonly PARTNER: "PARTNER";
126
+ };
127
+ export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
128
+ export declare const Domain: {
129
+ readonly EFS: "EFS";
130
+ readonly S3: "S3";
131
+ };
132
+ export type Domain = (typeof Domain)[keyof typeof Domain];
133
+ export declare const EndpointType: {
134
+ readonly PUBLIC: "PUBLIC";
135
+ readonly VPC: "VPC";
136
+ readonly VPC_ENDPOINT: "VPC_ENDPOINT";
137
+ };
138
+ export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
139
+ export declare const SftpAuthenticationMethods: {
140
+ readonly PASSWORD: "PASSWORD";
141
+ readonly PUBLIC_KEY: "PUBLIC_KEY";
142
+ readonly PUBLIC_KEY_AND_PASSWORD: "PUBLIC_KEY_AND_PASSWORD";
143
+ readonly PUBLIC_KEY_OR_PASSWORD: "PUBLIC_KEY_OR_PASSWORD";
144
+ };
145
+ export type SftpAuthenticationMethods =
146
+ (typeof SftpAuthenticationMethods)[keyof typeof SftpAuthenticationMethods];
147
+ export declare const IdentityProviderType: {
148
+ readonly API_GATEWAY: "API_GATEWAY";
149
+ readonly AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE";
150
+ readonly AWS_LAMBDA: "AWS_LAMBDA";
151
+ readonly SERVICE_MANAGED: "SERVICE_MANAGED";
152
+ };
153
+ export type IdentityProviderType =
154
+ (typeof IdentityProviderType)[keyof typeof IdentityProviderType];
155
+ export declare const IpAddressType: {
156
+ readonly DUALSTACK: "DUALSTACK";
157
+ readonly IPV4: "IPV4";
158
+ };
159
+ export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
160
+ export declare const SetStatOption: {
161
+ readonly DEFAULT: "DEFAULT";
162
+ readonly ENABLE_NO_OP: "ENABLE_NO_OP";
163
+ };
164
+ export type SetStatOption = (typeof SetStatOption)[keyof typeof SetStatOption];
165
+ export declare const TlsSessionResumptionMode: {
166
+ readonly DISABLED: "DISABLED";
167
+ readonly ENABLED: "ENABLED";
168
+ readonly ENFORCED: "ENFORCED";
169
+ };
170
+ export type TlsSessionResumptionMode =
171
+ (typeof TlsSessionResumptionMode)[keyof typeof TlsSessionResumptionMode];
172
+ export declare const Protocol: {
173
+ readonly AS2: "AS2";
174
+ readonly FTP: "FTP";
175
+ readonly FTPS: "FTPS";
176
+ readonly SFTP: "SFTP";
177
+ };
178
+ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
179
+ export declare const DirectoryListingOptimization: {
180
+ readonly DISABLED: "DISABLED";
181
+ readonly ENABLED: "ENABLED";
182
+ };
183
+ export type DirectoryListingOptimization =
184
+ (typeof DirectoryListingOptimization)[keyof typeof DirectoryListingOptimization];
185
+ export declare const WebAppEndpointPolicy: {
186
+ readonly FIPS: "FIPS";
187
+ readonly STANDARD: "STANDARD";
188
+ };
189
+ export type WebAppEndpointPolicy =
190
+ (typeof WebAppEndpointPolicy)[keyof typeof WebAppEndpointPolicy];
191
+ export declare const EncryptionType: {
192
+ readonly PGP: "PGP";
193
+ };
194
+ export type EncryptionType =
195
+ (typeof EncryptionType)[keyof typeof EncryptionType];
196
+ export declare const WorkflowStepType: {
197
+ readonly COPY: "COPY";
198
+ readonly CUSTOM: "CUSTOM";
199
+ readonly DECRYPT: "DECRYPT";
200
+ readonly DELETE: "DELETE";
201
+ readonly TAG: "TAG";
202
+ };
203
+ export type WorkflowStepType =
204
+ (typeof WorkflowStepType)[keyof typeof WorkflowStepType];
205
+ export declare const CustomStepStatus: {
206
+ readonly FAILURE: "FAILURE";
207
+ readonly SUCCESS: "SUCCESS";
208
+ };
209
+ export type CustomStepStatus =
210
+ (typeof CustomStepStatus)[keyof typeof CustomStepStatus];
211
+ export declare const ExecutionErrorType: {
212
+ readonly ALREADY_EXISTS: "ALREADY_EXISTS";
213
+ readonly BAD_REQUEST: "BAD_REQUEST";
214
+ readonly CUSTOM_STEP_FAILED: "CUSTOM_STEP_FAILED";
215
+ readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
216
+ readonly NOT_FOUND: "NOT_FOUND";
217
+ readonly PERMISSION_DENIED: "PERMISSION_DENIED";
218
+ readonly THROTTLED: "THROTTLED";
219
+ readonly TIMEOUT: "TIMEOUT";
220
+ };
221
+ export type ExecutionErrorType =
222
+ (typeof ExecutionErrorType)[keyof typeof ExecutionErrorType];
223
+ export declare const ExecutionStatus: {
224
+ readonly COMPLETED: "COMPLETED";
225
+ readonly EXCEPTION: "EXCEPTION";
226
+ readonly HANDLING_EXCEPTION: "HANDLING_EXCEPTION";
227
+ readonly IN_PROGRESS: "IN_PROGRESS";
228
+ };
229
+ export type ExecutionStatus =
230
+ (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
231
+ export declare const SecurityPolicyProtocol: {
232
+ readonly FTPS: "FTPS";
233
+ readonly SFTP: "SFTP";
234
+ };
235
+ export type SecurityPolicyProtocol =
236
+ (typeof SecurityPolicyProtocol)[keyof typeof SecurityPolicyProtocol];
237
+ export declare const SecurityPolicyResourceType: {
238
+ readonly CONNECTOR: "CONNECTOR";
239
+ readonly SERVER: "SERVER";
240
+ };
241
+ export type SecurityPolicyResourceType =
242
+ (typeof SecurityPolicyResourceType)[keyof typeof SecurityPolicyResourceType];
243
+ export declare const State: {
244
+ readonly OFFLINE: "OFFLINE";
245
+ readonly ONLINE: "ONLINE";
246
+ readonly STARTING: "STARTING";
247
+ readonly START_FAILED: "START_FAILED";
248
+ readonly STOPPING: "STOPPING";
249
+ readonly STOP_FAILED: "STOP_FAILED";
250
+ };
251
+ export type State = (typeof State)[keyof typeof State];
@@ -0,0 +1,76 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { TransferServiceException as __BaseException } from "./TransferServiceException";
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 InternalServiceError extends __BaseException {
12
+ readonly name: "InternalServiceError";
13
+ readonly $fault: "server";
14
+ Message: string | undefined;
15
+ constructor(
16
+ opts: __ExceptionOptionType<InternalServiceError, __BaseException>
17
+ );
18
+ }
19
+ export declare class InvalidRequestException extends __BaseException {
20
+ readonly name: "InvalidRequestException";
21
+ readonly $fault: "client";
22
+ Message: string | undefined;
23
+ constructor(
24
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
25
+ );
26
+ }
27
+ export declare class ResourceExistsException extends __BaseException {
28
+ readonly name: "ResourceExistsException";
29
+ readonly $fault: "client";
30
+ Message: string | undefined;
31
+ Resource: string | undefined;
32
+ ResourceType: string | undefined;
33
+ constructor(
34
+ opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
35
+ );
36
+ }
37
+ export declare class ResourceNotFoundException extends __BaseException {
38
+ readonly name: "ResourceNotFoundException";
39
+ readonly $fault: "client";
40
+ Message: string | undefined;
41
+ Resource: string | undefined;
42
+ ResourceType: string | undefined;
43
+ constructor(
44
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
45
+ );
46
+ }
47
+ export declare class ServiceUnavailableException extends __BaseException {
48
+ readonly name: "ServiceUnavailableException";
49
+ readonly $fault: "server";
50
+ Message?: string | undefined;
51
+ constructor(
52
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
53
+ );
54
+ }
55
+ export declare class ThrottlingException extends __BaseException {
56
+ readonly name: "ThrottlingException";
57
+ readonly $fault: "client";
58
+ RetryAfterSeconds?: string | undefined;
59
+ constructor(
60
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
61
+ );
62
+ }
63
+ export declare class InvalidNextTokenException extends __BaseException {
64
+ readonly name: "InvalidNextTokenException";
65
+ readonly $fault: "client";
66
+ Message: string | undefined;
67
+ constructor(
68
+ opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
69
+ );
70
+ }
71
+ export declare class ConflictException extends __BaseException {
72
+ readonly name: "ConflictException";
73
+ readonly $fault: "client";
74
+ Message: string | undefined;
75
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
76
+ }