@aws-sdk/client-transfer 3.687.0 → 3.691.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-types/models/models_0.d.ts +374 -374
- package/dist-types/ts3.4/models/models_0.d.ts +374 -374
- package/package.json +7 -7
|
@@ -3,7 +3,7 @@ import { TransferServiceException as __BaseException } from "./TransferServiceEx
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -19,14 +19,14 @@ export interface Tag {
|
|
|
19
19
|
Value: string | undefined;
|
|
20
20
|
}
|
|
21
21
|
export interface CreateAgreementRequest {
|
|
22
|
-
Description?: string;
|
|
22
|
+
Description?: string | undefined;
|
|
23
23
|
ServerId: string | undefined;
|
|
24
24
|
LocalProfileId: string | undefined;
|
|
25
25
|
PartnerProfileId: string | undefined;
|
|
26
26
|
BaseDirectory: string | undefined;
|
|
27
27
|
AccessRole: string | undefined;
|
|
28
|
-
Status?: AgreementStatusType;
|
|
29
|
-
Tags?: Tag[];
|
|
28
|
+
Status?: AgreementStatusType | undefined;
|
|
29
|
+
Tags?: Tag[] | undefined;
|
|
30
30
|
}
|
|
31
31
|
export interface CreateAgreementResponse {
|
|
32
32
|
AgreementId: string | undefined;
|
|
@@ -70,7 +70,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
70
70
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
71
71
|
readonly name: "ServiceUnavailableException";
|
|
72
72
|
readonly $fault: "server";
|
|
73
|
-
Message?: string;
|
|
73
|
+
Message?: string | undefined;
|
|
74
74
|
constructor(
|
|
75
75
|
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
76
76
|
);
|
|
@@ -78,7 +78,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
78
78
|
export declare class ThrottlingException extends __BaseException {
|
|
79
79
|
readonly name: "ThrottlingException";
|
|
80
80
|
readonly $fault: "client";
|
|
81
|
-
RetryAfterSeconds?: string;
|
|
81
|
+
RetryAfterSeconds?: string | undefined;
|
|
82
82
|
constructor(
|
|
83
83
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
84
84
|
);
|
|
@@ -93,15 +93,15 @@ export interface DescribeAgreementRequest {
|
|
|
93
93
|
}
|
|
94
94
|
export interface DescribedAgreement {
|
|
95
95
|
Arn: string | undefined;
|
|
96
|
-
AgreementId?: string;
|
|
97
|
-
Description?: string;
|
|
98
|
-
Status?: AgreementStatusType;
|
|
99
|
-
ServerId?: string;
|
|
100
|
-
LocalProfileId?: string;
|
|
101
|
-
PartnerProfileId?: string;
|
|
102
|
-
BaseDirectory?: string;
|
|
103
|
-
AccessRole?: string;
|
|
104
|
-
Tags?: Tag[];
|
|
96
|
+
AgreementId?: string | undefined;
|
|
97
|
+
Description?: string | undefined;
|
|
98
|
+
Status?: AgreementStatusType | undefined;
|
|
99
|
+
ServerId?: string | undefined;
|
|
100
|
+
LocalProfileId?: string | undefined;
|
|
101
|
+
PartnerProfileId?: string | undefined;
|
|
102
|
+
BaseDirectory?: string | undefined;
|
|
103
|
+
AccessRole?: string | undefined;
|
|
104
|
+
Tags?: Tag[] | undefined;
|
|
105
105
|
}
|
|
106
106
|
export interface DescribeAgreementResponse {
|
|
107
107
|
Agreement: DescribedAgreement | undefined;
|
|
@@ -115,32 +115,32 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
115
115
|
);
|
|
116
116
|
}
|
|
117
117
|
export interface ListAgreementsRequest {
|
|
118
|
-
MaxResults?: number;
|
|
119
|
-
NextToken?: string;
|
|
118
|
+
MaxResults?: number | undefined;
|
|
119
|
+
NextToken?: string | undefined;
|
|
120
120
|
ServerId: string | undefined;
|
|
121
121
|
}
|
|
122
122
|
export interface ListedAgreement {
|
|
123
|
-
Arn?: string;
|
|
124
|
-
AgreementId?: string;
|
|
125
|
-
Description?: string;
|
|
126
|
-
Status?: AgreementStatusType;
|
|
127
|
-
ServerId?: string;
|
|
128
|
-
LocalProfileId?: string;
|
|
129
|
-
PartnerProfileId?: string;
|
|
123
|
+
Arn?: string | undefined;
|
|
124
|
+
AgreementId?: string | undefined;
|
|
125
|
+
Description?: string | undefined;
|
|
126
|
+
Status?: AgreementStatusType | undefined;
|
|
127
|
+
ServerId?: string | undefined;
|
|
128
|
+
LocalProfileId?: string | undefined;
|
|
129
|
+
PartnerProfileId?: string | undefined;
|
|
130
130
|
}
|
|
131
131
|
export interface ListAgreementsResponse {
|
|
132
|
-
NextToken?: string;
|
|
132
|
+
NextToken?: string | undefined;
|
|
133
133
|
Agreements: ListedAgreement[] | undefined;
|
|
134
134
|
}
|
|
135
135
|
export interface UpdateAgreementRequest {
|
|
136
136
|
AgreementId: string | undefined;
|
|
137
137
|
ServerId: string | undefined;
|
|
138
|
-
Description?: string;
|
|
139
|
-
Status?: AgreementStatusType;
|
|
140
|
-
LocalProfileId?: string;
|
|
141
|
-
PartnerProfileId?: string;
|
|
142
|
-
BaseDirectory?: string;
|
|
143
|
-
AccessRole?: string;
|
|
138
|
+
Description?: string | undefined;
|
|
139
|
+
Status?: AgreementStatusType | undefined;
|
|
140
|
+
LocalProfileId?: string | undefined;
|
|
141
|
+
PartnerProfileId?: string | undefined;
|
|
142
|
+
BaseDirectory?: string | undefined;
|
|
143
|
+
AccessRole?: string | undefined;
|
|
144
144
|
}
|
|
145
145
|
export interface UpdateAgreementResponse {
|
|
146
146
|
AgreementId: string | undefined;
|
|
@@ -182,15 +182,15 @@ export declare const SigningAlg: {
|
|
|
182
182
|
};
|
|
183
183
|
export type SigningAlg = (typeof SigningAlg)[keyof typeof SigningAlg];
|
|
184
184
|
export interface As2ConnectorConfig {
|
|
185
|
-
LocalProfileId?: string;
|
|
186
|
-
PartnerProfileId?: string;
|
|
187
|
-
MessageSubject?: string;
|
|
188
|
-
Compression?: CompressionEnum;
|
|
189
|
-
EncryptionAlgorithm?: EncryptionAlg;
|
|
190
|
-
SigningAlgorithm?: SigningAlg;
|
|
191
|
-
MdnSigningAlgorithm?: MdnSigningAlg;
|
|
192
|
-
MdnResponse?: MdnResponse;
|
|
193
|
-
BasicAuthSecretId?: string;
|
|
185
|
+
LocalProfileId?: string | undefined;
|
|
186
|
+
PartnerProfileId?: string | undefined;
|
|
187
|
+
MessageSubject?: string | undefined;
|
|
188
|
+
Compression?: CompressionEnum | undefined;
|
|
189
|
+
EncryptionAlgorithm?: EncryptionAlg | undefined;
|
|
190
|
+
SigningAlgorithm?: SigningAlg | undefined;
|
|
191
|
+
MdnSigningAlgorithm?: MdnSigningAlg | undefined;
|
|
192
|
+
MdnResponse?: MdnResponse | undefined;
|
|
193
|
+
BasicAuthSecretId?: string | undefined;
|
|
194
194
|
}
|
|
195
195
|
export declare const As2Transport: {
|
|
196
196
|
readonly HTTP: "HTTP";
|
|
@@ -224,19 +224,19 @@ export type CertificateUsageType =
|
|
|
224
224
|
(typeof CertificateUsageType)[keyof typeof CertificateUsageType];
|
|
225
225
|
export interface DescribedCertificate {
|
|
226
226
|
Arn: string | undefined;
|
|
227
|
-
CertificateId?: string;
|
|
228
|
-
Usage?: CertificateUsageType;
|
|
229
|
-
Status?: CertificateStatusType;
|
|
230
|
-
Certificate?: string;
|
|
231
|
-
CertificateChain?: string;
|
|
232
|
-
ActiveDate?: Date;
|
|
233
|
-
InactiveDate?: Date;
|
|
234
|
-
Serial?: string;
|
|
235
|
-
NotBeforeDate?: Date;
|
|
236
|
-
NotAfterDate?: Date;
|
|
237
|
-
Type?: CertificateType;
|
|
238
|
-
Description?: string;
|
|
239
|
-
Tags?: Tag[];
|
|
227
|
+
CertificateId?: string | undefined;
|
|
228
|
+
Usage?: CertificateUsageType | undefined;
|
|
229
|
+
Status?: CertificateStatusType | undefined;
|
|
230
|
+
Certificate?: string | undefined;
|
|
231
|
+
CertificateChain?: string | undefined;
|
|
232
|
+
ActiveDate?: Date | undefined;
|
|
233
|
+
InactiveDate?: Date | undefined;
|
|
234
|
+
Serial?: string | undefined;
|
|
235
|
+
NotBeforeDate?: Date | undefined;
|
|
236
|
+
NotAfterDate?: Date | undefined;
|
|
237
|
+
Type?: CertificateType | undefined;
|
|
238
|
+
Description?: string | undefined;
|
|
239
|
+
Tags?: Tag[] | undefined;
|
|
240
240
|
}
|
|
241
241
|
export interface DescribeCertificateResponse {
|
|
242
242
|
Certificate: DescribedCertificate | undefined;
|
|
@@ -244,39 +244,39 @@ export interface DescribeCertificateResponse {
|
|
|
244
244
|
export interface ImportCertificateRequest {
|
|
245
245
|
Usage: CertificateUsageType | undefined;
|
|
246
246
|
Certificate: string | undefined;
|
|
247
|
-
CertificateChain?: string;
|
|
248
|
-
PrivateKey?: string;
|
|
249
|
-
ActiveDate?: Date;
|
|
250
|
-
InactiveDate?: Date;
|
|
251
|
-
Description?: string;
|
|
252
|
-
Tags?: Tag[];
|
|
247
|
+
CertificateChain?: string | undefined;
|
|
248
|
+
PrivateKey?: string | undefined;
|
|
249
|
+
ActiveDate?: Date | undefined;
|
|
250
|
+
InactiveDate?: Date | undefined;
|
|
251
|
+
Description?: string | undefined;
|
|
252
|
+
Tags?: Tag[] | undefined;
|
|
253
253
|
}
|
|
254
254
|
export interface ImportCertificateResponse {
|
|
255
255
|
CertificateId: string | undefined;
|
|
256
256
|
}
|
|
257
257
|
export interface ListCertificatesRequest {
|
|
258
|
-
MaxResults?: number;
|
|
259
|
-
NextToken?: string;
|
|
258
|
+
MaxResults?: number | undefined;
|
|
259
|
+
NextToken?: string | undefined;
|
|
260
260
|
}
|
|
261
261
|
export interface ListedCertificate {
|
|
262
|
-
Arn?: string;
|
|
263
|
-
CertificateId?: string;
|
|
264
|
-
Usage?: CertificateUsageType;
|
|
265
|
-
Status?: CertificateStatusType;
|
|
266
|
-
ActiveDate?: Date;
|
|
267
|
-
InactiveDate?: Date;
|
|
268
|
-
Type?: CertificateType;
|
|
269
|
-
Description?: string;
|
|
262
|
+
Arn?: string | undefined;
|
|
263
|
+
CertificateId?: string | undefined;
|
|
264
|
+
Usage?: CertificateUsageType | undefined;
|
|
265
|
+
Status?: CertificateStatusType | undefined;
|
|
266
|
+
ActiveDate?: Date | undefined;
|
|
267
|
+
InactiveDate?: Date | undefined;
|
|
268
|
+
Type?: CertificateType | undefined;
|
|
269
|
+
Description?: string | undefined;
|
|
270
270
|
}
|
|
271
271
|
export interface ListCertificatesResponse {
|
|
272
|
-
NextToken?: string;
|
|
272
|
+
NextToken?: string | undefined;
|
|
273
273
|
Certificates: ListedCertificate[] | undefined;
|
|
274
274
|
}
|
|
275
275
|
export interface UpdateCertificateRequest {
|
|
276
276
|
CertificateId: string | undefined;
|
|
277
|
-
ActiveDate?: Date;
|
|
278
|
-
InactiveDate?: Date;
|
|
279
|
-
Description?: string;
|
|
277
|
+
ActiveDate?: Date | undefined;
|
|
278
|
+
InactiveDate?: Date | undefined;
|
|
279
|
+
Description?: string | undefined;
|
|
280
280
|
}
|
|
281
281
|
export interface UpdateCertificateResponse {
|
|
282
282
|
CertificateId: string | undefined;
|
|
@@ -298,21 +298,21 @@ export type TransferTableStatus =
|
|
|
298
298
|
export interface ConnectorFileTransferResult {
|
|
299
299
|
FilePath: string | undefined;
|
|
300
300
|
StatusCode: TransferTableStatus | undefined;
|
|
301
|
-
FailureCode?: string;
|
|
302
|
-
FailureMessage?: string;
|
|
301
|
+
FailureCode?: string | undefined;
|
|
302
|
+
FailureMessage?: string | undefined;
|
|
303
303
|
}
|
|
304
304
|
export interface SftpConnectorConfig {
|
|
305
|
-
UserSecretId?: string;
|
|
306
|
-
TrustedHostKeys?: string[];
|
|
305
|
+
UserSecretId?: string | undefined;
|
|
306
|
+
TrustedHostKeys?: string[] | undefined;
|
|
307
307
|
}
|
|
308
308
|
export interface CreateConnectorRequest {
|
|
309
309
|
Url: string | undefined;
|
|
310
|
-
As2Config?: As2ConnectorConfig;
|
|
310
|
+
As2Config?: As2ConnectorConfig | undefined;
|
|
311
311
|
AccessRole: string | undefined;
|
|
312
|
-
LoggingRole?: string;
|
|
313
|
-
Tags?: Tag[];
|
|
314
|
-
SftpConfig?: SftpConnectorConfig;
|
|
315
|
-
SecurityPolicyName?: string;
|
|
312
|
+
LoggingRole?: string | undefined;
|
|
313
|
+
Tags?: Tag[] | undefined;
|
|
314
|
+
SftpConfig?: SftpConnectorConfig | undefined;
|
|
315
|
+
SecurityPolicyName?: string | undefined;
|
|
316
316
|
}
|
|
317
317
|
export interface CreateConnectorResponse {
|
|
318
318
|
ConnectorId: string | undefined;
|
|
@@ -325,55 +325,55 @@ export interface DescribeConnectorRequest {
|
|
|
325
325
|
}
|
|
326
326
|
export interface DescribedConnector {
|
|
327
327
|
Arn: string | undefined;
|
|
328
|
-
ConnectorId?: string;
|
|
329
|
-
Url?: string;
|
|
330
|
-
As2Config?: As2ConnectorConfig;
|
|
331
|
-
AccessRole?: string;
|
|
332
|
-
LoggingRole?: string;
|
|
333
|
-
Tags?: Tag[];
|
|
334
|
-
SftpConfig?: SftpConnectorConfig;
|
|
335
|
-
ServiceManagedEgressIpAddresses?: string[];
|
|
336
|
-
SecurityPolicyName?: string;
|
|
328
|
+
ConnectorId?: string | undefined;
|
|
329
|
+
Url?: string | undefined;
|
|
330
|
+
As2Config?: As2ConnectorConfig | undefined;
|
|
331
|
+
AccessRole?: string | undefined;
|
|
332
|
+
LoggingRole?: string | undefined;
|
|
333
|
+
Tags?: Tag[] | undefined;
|
|
334
|
+
SftpConfig?: SftpConnectorConfig | undefined;
|
|
335
|
+
ServiceManagedEgressIpAddresses?: string[] | undefined;
|
|
336
|
+
SecurityPolicyName?: string | undefined;
|
|
337
337
|
}
|
|
338
338
|
export interface DescribeConnectorResponse {
|
|
339
339
|
Connector: DescribedConnector | undefined;
|
|
340
340
|
}
|
|
341
341
|
export interface ListConnectorsRequest {
|
|
342
|
-
MaxResults?: number;
|
|
343
|
-
NextToken?: string;
|
|
342
|
+
MaxResults?: number | undefined;
|
|
343
|
+
NextToken?: string | undefined;
|
|
344
344
|
}
|
|
345
345
|
export interface ListedConnector {
|
|
346
|
-
Arn?: string;
|
|
347
|
-
ConnectorId?: string;
|
|
348
|
-
Url?: string;
|
|
346
|
+
Arn?: string | undefined;
|
|
347
|
+
ConnectorId?: string | undefined;
|
|
348
|
+
Url?: string | undefined;
|
|
349
349
|
}
|
|
350
350
|
export interface ListConnectorsResponse {
|
|
351
|
-
NextToken?: string;
|
|
351
|
+
NextToken?: string | undefined;
|
|
352
352
|
Connectors: ListedConnector[] | undefined;
|
|
353
353
|
}
|
|
354
354
|
export interface UpdateConnectorRequest {
|
|
355
355
|
ConnectorId: string | undefined;
|
|
356
|
-
Url?: string;
|
|
357
|
-
As2Config?: As2ConnectorConfig;
|
|
358
|
-
AccessRole?: string;
|
|
359
|
-
LoggingRole?: string;
|
|
360
|
-
SftpConfig?: SftpConnectorConfig;
|
|
361
|
-
SecurityPolicyName?: string;
|
|
356
|
+
Url?: string | undefined;
|
|
357
|
+
As2Config?: As2ConnectorConfig | undefined;
|
|
358
|
+
AccessRole?: string | undefined;
|
|
359
|
+
LoggingRole?: string | undefined;
|
|
360
|
+
SftpConfig?: SftpConnectorConfig | undefined;
|
|
361
|
+
SecurityPolicyName?: string | undefined;
|
|
362
362
|
}
|
|
363
363
|
export interface UpdateConnectorResponse {
|
|
364
364
|
ConnectorId: string | undefined;
|
|
365
365
|
}
|
|
366
366
|
export interface EfsFileLocation {
|
|
367
|
-
FileSystemId?: string;
|
|
368
|
-
Path?: string;
|
|
367
|
+
FileSystemId?: string | undefined;
|
|
368
|
+
Path?: string | undefined;
|
|
369
369
|
}
|
|
370
370
|
export interface S3InputFileLocation {
|
|
371
|
-
Bucket?: string;
|
|
372
|
-
Key?: string;
|
|
371
|
+
Bucket?: string | undefined;
|
|
372
|
+
Key?: string | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface InputFileLocation {
|
|
375
|
-
S3FileLocation?: S3InputFileLocation;
|
|
376
|
-
EfsFileLocation?: EfsFileLocation;
|
|
375
|
+
S3FileLocation?: S3InputFileLocation | undefined;
|
|
376
|
+
EfsFileLocation?: EfsFileLocation | undefined;
|
|
377
377
|
}
|
|
378
378
|
export declare const OverwriteExisting: {
|
|
379
379
|
readonly FALSE: "FALSE";
|
|
@@ -382,10 +382,10 @@ export declare const OverwriteExisting: {
|
|
|
382
382
|
export type OverwriteExisting =
|
|
383
383
|
(typeof OverwriteExisting)[keyof typeof OverwriteExisting];
|
|
384
384
|
export interface CopyStepDetails {
|
|
385
|
-
Name?: string;
|
|
386
|
-
DestinationFileLocation?: InputFileLocation;
|
|
387
|
-
OverwriteExisting?: OverwriteExisting;
|
|
388
|
-
SourceFileLocation?: string;
|
|
385
|
+
Name?: string | undefined;
|
|
386
|
+
DestinationFileLocation?: InputFileLocation | undefined;
|
|
387
|
+
OverwriteExisting?: OverwriteExisting | undefined;
|
|
388
|
+
SourceFileLocation?: string | undefined;
|
|
389
389
|
}
|
|
390
390
|
export declare const MapType: {
|
|
391
391
|
readonly DIRECTORY: "DIRECTORY";
|
|
@@ -395,7 +395,7 @@ export type MapType = (typeof MapType)[keyof typeof MapType];
|
|
|
395
395
|
export interface HomeDirectoryMapEntry {
|
|
396
396
|
Entry: string | undefined;
|
|
397
397
|
Target: string | undefined;
|
|
398
|
-
Type?: MapType;
|
|
398
|
+
Type?: MapType | undefined;
|
|
399
399
|
}
|
|
400
400
|
export declare const HomeDirectoryType: {
|
|
401
401
|
readonly LOGICAL: "LOGICAL";
|
|
@@ -406,14 +406,14 @@ export type HomeDirectoryType =
|
|
|
406
406
|
export interface PosixProfile {
|
|
407
407
|
Uid: number | undefined;
|
|
408
408
|
Gid: number | undefined;
|
|
409
|
-
SecondaryGids?: number[];
|
|
409
|
+
SecondaryGids?: number[] | undefined;
|
|
410
410
|
}
|
|
411
411
|
export interface CreateAccessRequest {
|
|
412
|
-
HomeDirectory?: string;
|
|
413
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
414
|
-
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
415
|
-
Policy?: string;
|
|
416
|
-
PosixProfile?: PosixProfile;
|
|
412
|
+
HomeDirectory?: string | undefined;
|
|
413
|
+
HomeDirectoryType?: HomeDirectoryType | undefined;
|
|
414
|
+
HomeDirectoryMappings?: HomeDirectoryMapEntry[] | undefined;
|
|
415
|
+
Policy?: string | undefined;
|
|
416
|
+
PosixProfile?: PosixProfile | undefined;
|
|
417
417
|
Role: string | undefined;
|
|
418
418
|
ServerId: string | undefined;
|
|
419
419
|
ExternalId: string | undefined;
|
|
@@ -430,8 +430,8 @@ export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
|
|
|
430
430
|
export interface CreateProfileRequest {
|
|
431
431
|
As2Id: string | undefined;
|
|
432
432
|
ProfileType: ProfileType | undefined;
|
|
433
|
-
CertificateIds?: string[];
|
|
434
|
-
Tags?: Tag[];
|
|
433
|
+
CertificateIds?: string[] | undefined;
|
|
434
|
+
Tags?: Tag[] | undefined;
|
|
435
435
|
}
|
|
436
436
|
export interface CreateProfileResponse {
|
|
437
437
|
ProfileId: string | undefined;
|
|
@@ -442,11 +442,11 @@ export declare const Domain: {
|
|
|
442
442
|
};
|
|
443
443
|
export type Domain = (typeof Domain)[keyof typeof Domain];
|
|
444
444
|
export interface EndpointDetails {
|
|
445
|
-
AddressAllocationIds?: string[];
|
|
446
|
-
SubnetIds?: string[];
|
|
447
|
-
VpcEndpointId?: string;
|
|
448
|
-
VpcId?: string;
|
|
449
|
-
SecurityGroupIds?: string[];
|
|
445
|
+
AddressAllocationIds?: string[] | undefined;
|
|
446
|
+
SubnetIds?: string[] | undefined;
|
|
447
|
+
VpcEndpointId?: string | undefined;
|
|
448
|
+
VpcId?: string | undefined;
|
|
449
|
+
SecurityGroupIds?: string[] | undefined;
|
|
450
450
|
}
|
|
451
451
|
export declare const EndpointType: {
|
|
452
452
|
readonly PUBLIC: "PUBLIC";
|
|
@@ -463,11 +463,11 @@ export declare const SftpAuthenticationMethods: {
|
|
|
463
463
|
export type SftpAuthenticationMethods =
|
|
464
464
|
(typeof SftpAuthenticationMethods)[keyof typeof SftpAuthenticationMethods];
|
|
465
465
|
export interface IdentityProviderDetails {
|
|
466
|
-
Url?: string;
|
|
467
|
-
InvocationRole?: string;
|
|
468
|
-
DirectoryId?: string;
|
|
469
|
-
Function?: string;
|
|
470
|
-
SftpAuthenticationMethods?: SftpAuthenticationMethods;
|
|
466
|
+
Url?: string | undefined;
|
|
467
|
+
InvocationRole?: string | undefined;
|
|
468
|
+
DirectoryId?: string | undefined;
|
|
469
|
+
Function?: string | undefined;
|
|
470
|
+
SftpAuthenticationMethods?: SftpAuthenticationMethods | undefined;
|
|
471
471
|
}
|
|
472
472
|
export declare const IdentityProviderType: {
|
|
473
473
|
readonly API_GATEWAY: "API_GATEWAY";
|
|
@@ -490,10 +490,10 @@ export declare const TlsSessionResumptionMode: {
|
|
|
490
490
|
export type TlsSessionResumptionMode =
|
|
491
491
|
(typeof TlsSessionResumptionMode)[keyof typeof TlsSessionResumptionMode];
|
|
492
492
|
export interface ProtocolDetails {
|
|
493
|
-
PassiveIp?: string;
|
|
494
|
-
TlsSessionResumptionMode?: TlsSessionResumptionMode;
|
|
495
|
-
SetStatOption?: SetStatOption;
|
|
496
|
-
As2Transports?: As2Transport[];
|
|
493
|
+
PassiveIp?: string | undefined;
|
|
494
|
+
TlsSessionResumptionMode?: TlsSessionResumptionMode | undefined;
|
|
495
|
+
SetStatOption?: SetStatOption | undefined;
|
|
496
|
+
As2Transports?: As2Transport[] | undefined;
|
|
497
497
|
}
|
|
498
498
|
export declare const Protocol: {
|
|
499
499
|
readonly AS2: "AS2";
|
|
@@ -509,48 +509,48 @@ export declare const DirectoryListingOptimization: {
|
|
|
509
509
|
export type DirectoryListingOptimization =
|
|
510
510
|
(typeof DirectoryListingOptimization)[keyof typeof DirectoryListingOptimization];
|
|
511
511
|
export interface S3StorageOptions {
|
|
512
|
-
DirectoryListingOptimization?: DirectoryListingOptimization;
|
|
512
|
+
DirectoryListingOptimization?: DirectoryListingOptimization | undefined;
|
|
513
513
|
}
|
|
514
514
|
export interface WorkflowDetail {
|
|
515
515
|
WorkflowId: string | undefined;
|
|
516
516
|
ExecutionRole: string | undefined;
|
|
517
517
|
}
|
|
518
518
|
export interface WorkflowDetails {
|
|
519
|
-
OnUpload?: WorkflowDetail[];
|
|
520
|
-
OnPartialUpload?: WorkflowDetail[];
|
|
519
|
+
OnUpload?: WorkflowDetail[] | undefined;
|
|
520
|
+
OnPartialUpload?: WorkflowDetail[] | undefined;
|
|
521
521
|
}
|
|
522
522
|
export interface CreateServerRequest {
|
|
523
|
-
Certificate?: string;
|
|
524
|
-
Domain?: Domain;
|
|
525
|
-
EndpointDetails?: EndpointDetails;
|
|
526
|
-
EndpointType?: EndpointType;
|
|
527
|
-
HostKey?: string;
|
|
528
|
-
IdentityProviderDetails?: IdentityProviderDetails;
|
|
529
|
-
IdentityProviderType?: IdentityProviderType;
|
|
530
|
-
LoggingRole?: string;
|
|
531
|
-
PostAuthenticationLoginBanner?: string;
|
|
532
|
-
PreAuthenticationLoginBanner?: string;
|
|
533
|
-
Protocols?: Protocol[];
|
|
534
|
-
ProtocolDetails?: ProtocolDetails;
|
|
535
|
-
SecurityPolicyName?: string;
|
|
536
|
-
Tags?: Tag[];
|
|
537
|
-
WorkflowDetails?: WorkflowDetails;
|
|
538
|
-
StructuredLogDestinations?: string[];
|
|
539
|
-
S3StorageOptions?: S3StorageOptions;
|
|
523
|
+
Certificate?: string | undefined;
|
|
524
|
+
Domain?: Domain | undefined;
|
|
525
|
+
EndpointDetails?: EndpointDetails | undefined;
|
|
526
|
+
EndpointType?: EndpointType | undefined;
|
|
527
|
+
HostKey?: string | undefined;
|
|
528
|
+
IdentityProviderDetails?: IdentityProviderDetails | undefined;
|
|
529
|
+
IdentityProviderType?: IdentityProviderType | undefined;
|
|
530
|
+
LoggingRole?: string | undefined;
|
|
531
|
+
PostAuthenticationLoginBanner?: string | undefined;
|
|
532
|
+
PreAuthenticationLoginBanner?: string | undefined;
|
|
533
|
+
Protocols?: Protocol[] | undefined;
|
|
534
|
+
ProtocolDetails?: ProtocolDetails | undefined;
|
|
535
|
+
SecurityPolicyName?: string | undefined;
|
|
536
|
+
Tags?: Tag[] | undefined;
|
|
537
|
+
WorkflowDetails?: WorkflowDetails | undefined;
|
|
538
|
+
StructuredLogDestinations?: string[] | undefined;
|
|
539
|
+
S3StorageOptions?: S3StorageOptions | undefined;
|
|
540
540
|
}
|
|
541
541
|
export interface CreateServerResponse {
|
|
542
542
|
ServerId: string | undefined;
|
|
543
543
|
}
|
|
544
544
|
export interface CreateUserRequest {
|
|
545
|
-
HomeDirectory?: string;
|
|
546
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
547
|
-
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
548
|
-
Policy?: string;
|
|
549
|
-
PosixProfile?: PosixProfile;
|
|
545
|
+
HomeDirectory?: string | undefined;
|
|
546
|
+
HomeDirectoryType?: HomeDirectoryType | undefined;
|
|
547
|
+
HomeDirectoryMappings?: HomeDirectoryMapEntry[] | undefined;
|
|
548
|
+
Policy?: string | undefined;
|
|
549
|
+
PosixProfile?: PosixProfile | undefined;
|
|
550
550
|
Role: string | undefined;
|
|
551
551
|
ServerId: string | undefined;
|
|
552
|
-
SshPublicKeyBody?: string;
|
|
553
|
-
Tags?: Tag[];
|
|
552
|
+
SshPublicKeyBody?: string | undefined;
|
|
553
|
+
Tags?: Tag[] | undefined;
|
|
554
554
|
UserName: string | undefined;
|
|
555
555
|
}
|
|
556
556
|
export interface CreateUserResponse {
|
|
@@ -558,10 +558,10 @@ export interface CreateUserResponse {
|
|
|
558
558
|
UserName: string | undefined;
|
|
559
559
|
}
|
|
560
560
|
export interface CustomStepDetails {
|
|
561
|
-
Name?: string;
|
|
562
|
-
Target?: string;
|
|
563
|
-
TimeoutSeconds?: number;
|
|
564
|
-
SourceFileLocation?: string;
|
|
561
|
+
Name?: string | undefined;
|
|
562
|
+
Target?: string | undefined;
|
|
563
|
+
TimeoutSeconds?: number | undefined;
|
|
564
|
+
SourceFileLocation?: string | undefined;
|
|
565
565
|
}
|
|
566
566
|
export declare const EncryptionType: {
|
|
567
567
|
readonly PGP: "PGP";
|
|
@@ -569,24 +569,24 @@ export declare const EncryptionType: {
|
|
|
569
569
|
export type EncryptionType =
|
|
570
570
|
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
571
571
|
export interface DecryptStepDetails {
|
|
572
|
-
Name?: string;
|
|
572
|
+
Name?: string | undefined;
|
|
573
573
|
Type: EncryptionType | undefined;
|
|
574
|
-
SourceFileLocation?: string;
|
|
575
|
-
OverwriteExisting?: OverwriteExisting;
|
|
574
|
+
SourceFileLocation?: string | undefined;
|
|
575
|
+
OverwriteExisting?: OverwriteExisting | undefined;
|
|
576
576
|
DestinationFileLocation: InputFileLocation | undefined;
|
|
577
577
|
}
|
|
578
578
|
export interface DeleteStepDetails {
|
|
579
|
-
Name?: string;
|
|
580
|
-
SourceFileLocation?: string;
|
|
579
|
+
Name?: string | undefined;
|
|
580
|
+
SourceFileLocation?: string | undefined;
|
|
581
581
|
}
|
|
582
582
|
export interface S3Tag {
|
|
583
583
|
Key: string | undefined;
|
|
584
584
|
Value: string | undefined;
|
|
585
585
|
}
|
|
586
586
|
export interface TagStepDetails {
|
|
587
|
-
Name?: string;
|
|
588
|
-
Tags?: S3Tag[];
|
|
589
|
-
SourceFileLocation?: string;
|
|
587
|
+
Name?: string | undefined;
|
|
588
|
+
Tags?: S3Tag[] | undefined;
|
|
589
|
+
SourceFileLocation?: string | undefined;
|
|
590
590
|
}
|
|
591
591
|
export declare const WorkflowStepType: {
|
|
592
592
|
readonly COPY: "COPY";
|
|
@@ -598,18 +598,18 @@ export declare const WorkflowStepType: {
|
|
|
598
598
|
export type WorkflowStepType =
|
|
599
599
|
(typeof WorkflowStepType)[keyof typeof WorkflowStepType];
|
|
600
600
|
export interface WorkflowStep {
|
|
601
|
-
Type?: WorkflowStepType;
|
|
602
|
-
CopyStepDetails?: CopyStepDetails;
|
|
603
|
-
CustomStepDetails?: CustomStepDetails;
|
|
604
|
-
DeleteStepDetails?: DeleteStepDetails;
|
|
605
|
-
TagStepDetails?: TagStepDetails;
|
|
606
|
-
DecryptStepDetails?: DecryptStepDetails;
|
|
601
|
+
Type?: WorkflowStepType | undefined;
|
|
602
|
+
CopyStepDetails?: CopyStepDetails | undefined;
|
|
603
|
+
CustomStepDetails?: CustomStepDetails | undefined;
|
|
604
|
+
DeleteStepDetails?: DeleteStepDetails | undefined;
|
|
605
|
+
TagStepDetails?: TagStepDetails | undefined;
|
|
606
|
+
DecryptStepDetails?: DecryptStepDetails | undefined;
|
|
607
607
|
}
|
|
608
608
|
export interface CreateWorkflowRequest {
|
|
609
|
-
Description?: string;
|
|
609
|
+
Description?: string | undefined;
|
|
610
610
|
Steps: WorkflowStep[] | undefined;
|
|
611
|
-
OnExceptionSteps?: WorkflowStep[];
|
|
612
|
-
Tags?: Tag[];
|
|
611
|
+
OnExceptionSteps?: WorkflowStep[] | undefined;
|
|
612
|
+
Tags?: Tag[] | undefined;
|
|
613
613
|
}
|
|
614
614
|
export interface CreateWorkflowResponse {
|
|
615
615
|
WorkflowId: string | undefined;
|
|
@@ -651,31 +651,31 @@ export interface DescribeAccessRequest {
|
|
|
651
651
|
ExternalId: string | undefined;
|
|
652
652
|
}
|
|
653
653
|
export interface DescribedAccess {
|
|
654
|
-
HomeDirectory?: string;
|
|
655
|
-
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
656
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
657
|
-
Policy?: string;
|
|
658
|
-
PosixProfile?: PosixProfile;
|
|
659
|
-
Role?: string;
|
|
660
|
-
ExternalId?: string;
|
|
654
|
+
HomeDirectory?: string | undefined;
|
|
655
|
+
HomeDirectoryMappings?: HomeDirectoryMapEntry[] | undefined;
|
|
656
|
+
HomeDirectoryType?: HomeDirectoryType | undefined;
|
|
657
|
+
Policy?: string | undefined;
|
|
658
|
+
PosixProfile?: PosixProfile | undefined;
|
|
659
|
+
Role?: string | undefined;
|
|
660
|
+
ExternalId?: string | undefined;
|
|
661
661
|
}
|
|
662
662
|
export interface DescribeAccessResponse {
|
|
663
663
|
ServerId: string | undefined;
|
|
664
664
|
Access: DescribedAccess | undefined;
|
|
665
665
|
}
|
|
666
666
|
export interface S3FileLocation {
|
|
667
|
-
Bucket?: string;
|
|
668
|
-
Key?: string;
|
|
669
|
-
VersionId?: string;
|
|
670
|
-
Etag?: string;
|
|
667
|
+
Bucket?: string | undefined;
|
|
668
|
+
Key?: string | undefined;
|
|
669
|
+
VersionId?: string | undefined;
|
|
670
|
+
Etag?: string | undefined;
|
|
671
671
|
}
|
|
672
672
|
export interface FileLocation {
|
|
673
|
-
S3FileLocation?: S3FileLocation;
|
|
674
|
-
EfsFileLocation?: EfsFileLocation;
|
|
673
|
+
S3FileLocation?: S3FileLocation | undefined;
|
|
674
|
+
EfsFileLocation?: EfsFileLocation | undefined;
|
|
675
675
|
}
|
|
676
676
|
export interface LoggingConfiguration {
|
|
677
|
-
LoggingRole?: string;
|
|
678
|
-
LogGroupName?: string;
|
|
677
|
+
LoggingRole?: string | undefined;
|
|
678
|
+
LogGroupName?: string | undefined;
|
|
679
679
|
}
|
|
680
680
|
export declare const ExecutionErrorType: {
|
|
681
681
|
readonly ALREADY_EXISTS: "ALREADY_EXISTS";
|
|
@@ -694,18 +694,18 @@ export interface ExecutionError {
|
|
|
694
694
|
Message: string | undefined;
|
|
695
695
|
}
|
|
696
696
|
export interface ExecutionStepResult {
|
|
697
|
-
StepType?: WorkflowStepType;
|
|
698
|
-
Outputs?: string;
|
|
699
|
-
Error?: ExecutionError;
|
|
697
|
+
StepType?: WorkflowStepType | undefined;
|
|
698
|
+
Outputs?: string | undefined;
|
|
699
|
+
Error?: ExecutionError | undefined;
|
|
700
700
|
}
|
|
701
701
|
export interface ExecutionResults {
|
|
702
|
-
Steps?: ExecutionStepResult[];
|
|
703
|
-
OnExceptionSteps?: ExecutionStepResult[];
|
|
702
|
+
Steps?: ExecutionStepResult[] | undefined;
|
|
703
|
+
OnExceptionSteps?: ExecutionStepResult[] | undefined;
|
|
704
704
|
}
|
|
705
705
|
export interface UserDetails {
|
|
706
706
|
UserName: string | undefined;
|
|
707
707
|
ServerId: string | undefined;
|
|
708
|
-
SessionId?: string;
|
|
708
|
+
SessionId?: string | undefined;
|
|
709
709
|
}
|
|
710
710
|
export interface ServiceMetadata {
|
|
711
711
|
UserDetails: UserDetails | undefined;
|
|
@@ -719,31 +719,31 @@ export declare const ExecutionStatus: {
|
|
|
719
719
|
export type ExecutionStatus =
|
|
720
720
|
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
721
721
|
export interface DescribedExecution {
|
|
722
|
-
ExecutionId?: string;
|
|
723
|
-
InitialFileLocation?: FileLocation;
|
|
724
|
-
ServiceMetadata?: ServiceMetadata;
|
|
725
|
-
ExecutionRole?: string;
|
|
726
|
-
LoggingConfiguration?: LoggingConfiguration;
|
|
727
|
-
PosixProfile?: PosixProfile;
|
|
728
|
-
Status?: ExecutionStatus;
|
|
729
|
-
Results?: ExecutionResults;
|
|
722
|
+
ExecutionId?: string | undefined;
|
|
723
|
+
InitialFileLocation?: FileLocation | undefined;
|
|
724
|
+
ServiceMetadata?: ServiceMetadata | undefined;
|
|
725
|
+
ExecutionRole?: string | undefined;
|
|
726
|
+
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
727
|
+
PosixProfile?: PosixProfile | undefined;
|
|
728
|
+
Status?: ExecutionStatus | undefined;
|
|
729
|
+
Results?: ExecutionResults | undefined;
|
|
730
730
|
}
|
|
731
731
|
export interface DescribedHostKey {
|
|
732
732
|
Arn: string | undefined;
|
|
733
|
-
HostKeyId?: string;
|
|
734
|
-
HostKeyFingerprint?: string;
|
|
735
|
-
Description?: string;
|
|
736
|
-
Type?: string;
|
|
737
|
-
DateImported?: Date;
|
|
738
|
-
Tags?: Tag[];
|
|
733
|
+
HostKeyId?: string | undefined;
|
|
734
|
+
HostKeyFingerprint?: string | undefined;
|
|
735
|
+
Description?: string | undefined;
|
|
736
|
+
Type?: string | undefined;
|
|
737
|
+
DateImported?: Date | undefined;
|
|
738
|
+
Tags?: Tag[] | undefined;
|
|
739
739
|
}
|
|
740
740
|
export interface DescribedProfile {
|
|
741
741
|
Arn: string | undefined;
|
|
742
|
-
ProfileId?: string;
|
|
743
|
-
ProfileType?: ProfileType;
|
|
744
|
-
As2Id?: string;
|
|
745
|
-
CertificateIds?: string[];
|
|
746
|
-
Tags?: Tag[];
|
|
742
|
+
ProfileId?: string | undefined;
|
|
743
|
+
ProfileType?: ProfileType | undefined;
|
|
744
|
+
As2Id?: string | undefined;
|
|
745
|
+
CertificateIds?: string[] | undefined;
|
|
746
|
+
Tags?: Tag[] | undefined;
|
|
747
747
|
}
|
|
748
748
|
export declare const SecurityPolicyProtocol: {
|
|
749
749
|
readonly FTPS: "FTPS";
|
|
@@ -758,15 +758,15 @@ export declare const SecurityPolicyResourceType: {
|
|
|
758
758
|
export type SecurityPolicyResourceType =
|
|
759
759
|
(typeof SecurityPolicyResourceType)[keyof typeof SecurityPolicyResourceType];
|
|
760
760
|
export interface DescribedSecurityPolicy {
|
|
761
|
-
Fips?: boolean;
|
|
761
|
+
Fips?: boolean | undefined;
|
|
762
762
|
SecurityPolicyName: string | undefined;
|
|
763
|
-
SshCiphers?: string[];
|
|
764
|
-
SshKexs?: string[];
|
|
765
|
-
SshMacs?: string[];
|
|
766
|
-
TlsCiphers?: string[];
|
|
767
|
-
SshHostKeyAlgorithms?: string[];
|
|
768
|
-
Type?: SecurityPolicyResourceType;
|
|
769
|
-
Protocols?: SecurityPolicyProtocol[];
|
|
763
|
+
SshCiphers?: string[] | undefined;
|
|
764
|
+
SshKexs?: string[] | undefined;
|
|
765
|
+
SshMacs?: string[] | undefined;
|
|
766
|
+
TlsCiphers?: string[] | undefined;
|
|
767
|
+
SshHostKeyAlgorithms?: string[] | undefined;
|
|
768
|
+
Type?: SecurityPolicyResourceType | undefined;
|
|
769
|
+
Protocols?: SecurityPolicyProtocol[] | undefined;
|
|
770
770
|
}
|
|
771
771
|
export declare const State: {
|
|
772
772
|
readonly OFFLINE: "OFFLINE";
|
|
@@ -779,27 +779,27 @@ export declare const State: {
|
|
|
779
779
|
export type State = (typeof State)[keyof typeof State];
|
|
780
780
|
export interface DescribedServer {
|
|
781
781
|
Arn: string | undefined;
|
|
782
|
-
Certificate?: string;
|
|
783
|
-
ProtocolDetails?: ProtocolDetails;
|
|
784
|
-
Domain?: Domain;
|
|
785
|
-
EndpointDetails?: EndpointDetails;
|
|
786
|
-
EndpointType?: EndpointType;
|
|
787
|
-
HostKeyFingerprint?: string;
|
|
788
|
-
IdentityProviderDetails?: IdentityProviderDetails;
|
|
789
|
-
IdentityProviderType?: IdentityProviderType;
|
|
790
|
-
LoggingRole?: string;
|
|
791
|
-
PostAuthenticationLoginBanner?: string;
|
|
792
|
-
PreAuthenticationLoginBanner?: string;
|
|
793
|
-
Protocols?: Protocol[];
|
|
794
|
-
SecurityPolicyName?: string;
|
|
795
|
-
ServerId?: string;
|
|
796
|
-
State?: State;
|
|
797
|
-
Tags?: Tag[];
|
|
798
|
-
UserCount?: number;
|
|
799
|
-
WorkflowDetails?: WorkflowDetails;
|
|
800
|
-
StructuredLogDestinations?: string[];
|
|
801
|
-
S3StorageOptions?: S3StorageOptions;
|
|
802
|
-
As2ServiceManagedEgressIpAddresses?: string[];
|
|
782
|
+
Certificate?: string | undefined;
|
|
783
|
+
ProtocolDetails?: ProtocolDetails | undefined;
|
|
784
|
+
Domain?: Domain | undefined;
|
|
785
|
+
EndpointDetails?: EndpointDetails | undefined;
|
|
786
|
+
EndpointType?: EndpointType | undefined;
|
|
787
|
+
HostKeyFingerprint?: string | undefined;
|
|
788
|
+
IdentityProviderDetails?: IdentityProviderDetails | undefined;
|
|
789
|
+
IdentityProviderType?: IdentityProviderType | undefined;
|
|
790
|
+
LoggingRole?: string | undefined;
|
|
791
|
+
PostAuthenticationLoginBanner?: string | undefined;
|
|
792
|
+
PreAuthenticationLoginBanner?: string | undefined;
|
|
793
|
+
Protocols?: Protocol[] | undefined;
|
|
794
|
+
SecurityPolicyName?: string | undefined;
|
|
795
|
+
ServerId?: string | undefined;
|
|
796
|
+
State?: State | undefined;
|
|
797
|
+
Tags?: Tag[] | undefined;
|
|
798
|
+
UserCount?: number | undefined;
|
|
799
|
+
WorkflowDetails?: WorkflowDetails | undefined;
|
|
800
|
+
StructuredLogDestinations?: string[] | undefined;
|
|
801
|
+
S3StorageOptions?: S3StorageOptions | undefined;
|
|
802
|
+
As2ServiceManagedEgressIpAddresses?: string[] | undefined;
|
|
803
803
|
}
|
|
804
804
|
export interface SshPublicKey {
|
|
805
805
|
DateImported: Date | undefined;
|
|
@@ -808,23 +808,23 @@ export interface SshPublicKey {
|
|
|
808
808
|
}
|
|
809
809
|
export interface DescribedUser {
|
|
810
810
|
Arn: string | undefined;
|
|
811
|
-
HomeDirectory?: string;
|
|
812
|
-
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
813
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
814
|
-
Policy?: string;
|
|
815
|
-
PosixProfile?: PosixProfile;
|
|
816
|
-
Role?: string;
|
|
817
|
-
SshPublicKeys?: SshPublicKey[];
|
|
818
|
-
Tags?: Tag[];
|
|
819
|
-
UserName?: string;
|
|
811
|
+
HomeDirectory?: string | undefined;
|
|
812
|
+
HomeDirectoryMappings?: HomeDirectoryMapEntry[] | undefined;
|
|
813
|
+
HomeDirectoryType?: HomeDirectoryType | undefined;
|
|
814
|
+
Policy?: string | undefined;
|
|
815
|
+
PosixProfile?: PosixProfile | undefined;
|
|
816
|
+
Role?: string | undefined;
|
|
817
|
+
SshPublicKeys?: SshPublicKey[] | undefined;
|
|
818
|
+
Tags?: Tag[] | undefined;
|
|
819
|
+
UserName?: string | undefined;
|
|
820
820
|
}
|
|
821
821
|
export interface DescribedWorkflow {
|
|
822
822
|
Arn: string | undefined;
|
|
823
|
-
Description?: string;
|
|
824
|
-
Steps?: WorkflowStep[];
|
|
825
|
-
OnExceptionSteps?: WorkflowStep[];
|
|
826
|
-
WorkflowId?: string;
|
|
827
|
-
Tags?: Tag[];
|
|
823
|
+
Description?: string | undefined;
|
|
824
|
+
Steps?: WorkflowStep[] | undefined;
|
|
825
|
+
OnExceptionSteps?: WorkflowStep[] | undefined;
|
|
826
|
+
WorkflowId?: string | undefined;
|
|
827
|
+
Tags?: Tag[] | undefined;
|
|
828
828
|
}
|
|
829
829
|
export interface DescribeExecutionRequest {
|
|
830
830
|
ExecutionId: string | undefined;
|
|
@@ -876,8 +876,8 @@ export interface DescribeWorkflowResponse {
|
|
|
876
876
|
export interface ImportHostKeyRequest {
|
|
877
877
|
ServerId: string | undefined;
|
|
878
878
|
HostKeyBody: string | undefined;
|
|
879
|
-
Description?: string;
|
|
880
|
-
Tags?: Tag[];
|
|
879
|
+
Description?: string | undefined;
|
|
880
|
+
Tags?: Tag[] | undefined;
|
|
881
881
|
}
|
|
882
882
|
export interface ImportHostKeyResponse {
|
|
883
883
|
ServerId: string | undefined;
|
|
@@ -894,150 +894,150 @@ export interface ImportSshPublicKeyResponse {
|
|
|
894
894
|
UserName: string | undefined;
|
|
895
895
|
}
|
|
896
896
|
export interface ListAccessesRequest {
|
|
897
|
-
MaxResults?: number;
|
|
898
|
-
NextToken?: string;
|
|
897
|
+
MaxResults?: number | undefined;
|
|
898
|
+
NextToken?: string | undefined;
|
|
899
899
|
ServerId: string | undefined;
|
|
900
900
|
}
|
|
901
901
|
export interface ListedAccess {
|
|
902
|
-
HomeDirectory?: string;
|
|
903
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
904
|
-
Role?: string;
|
|
905
|
-
ExternalId?: string;
|
|
902
|
+
HomeDirectory?: string | undefined;
|
|
903
|
+
HomeDirectoryType?: HomeDirectoryType | undefined;
|
|
904
|
+
Role?: string | undefined;
|
|
905
|
+
ExternalId?: string | undefined;
|
|
906
906
|
}
|
|
907
907
|
export interface ListAccessesResponse {
|
|
908
|
-
NextToken?: string;
|
|
908
|
+
NextToken?: string | undefined;
|
|
909
909
|
ServerId: string | undefined;
|
|
910
910
|
Accesses: ListedAccess[] | undefined;
|
|
911
911
|
}
|
|
912
912
|
export interface ListedExecution {
|
|
913
|
-
ExecutionId?: string;
|
|
914
|
-
InitialFileLocation?: FileLocation;
|
|
915
|
-
ServiceMetadata?: ServiceMetadata;
|
|
916
|
-
Status?: ExecutionStatus;
|
|
913
|
+
ExecutionId?: string | undefined;
|
|
914
|
+
InitialFileLocation?: FileLocation | undefined;
|
|
915
|
+
ServiceMetadata?: ServiceMetadata | undefined;
|
|
916
|
+
Status?: ExecutionStatus | undefined;
|
|
917
917
|
}
|
|
918
918
|
export interface ListedHostKey {
|
|
919
919
|
Arn: string | undefined;
|
|
920
|
-
HostKeyId?: string;
|
|
921
|
-
Fingerprint?: string;
|
|
922
|
-
Description?: string;
|
|
923
|
-
Type?: string;
|
|
924
|
-
DateImported?: Date;
|
|
920
|
+
HostKeyId?: string | undefined;
|
|
921
|
+
Fingerprint?: string | undefined;
|
|
922
|
+
Description?: string | undefined;
|
|
923
|
+
Type?: string | undefined;
|
|
924
|
+
DateImported?: Date | undefined;
|
|
925
925
|
}
|
|
926
926
|
export interface ListedProfile {
|
|
927
|
-
Arn?: string;
|
|
928
|
-
ProfileId?: string;
|
|
929
|
-
As2Id?: string;
|
|
930
|
-
ProfileType?: ProfileType;
|
|
927
|
+
Arn?: string | undefined;
|
|
928
|
+
ProfileId?: string | undefined;
|
|
929
|
+
As2Id?: string | undefined;
|
|
930
|
+
ProfileType?: ProfileType | undefined;
|
|
931
931
|
}
|
|
932
932
|
export interface ListedServer {
|
|
933
933
|
Arn: string | undefined;
|
|
934
|
-
Domain?: Domain;
|
|
935
|
-
IdentityProviderType?: IdentityProviderType;
|
|
936
|
-
EndpointType?: EndpointType;
|
|
937
|
-
LoggingRole?: string;
|
|
938
|
-
ServerId?: string;
|
|
939
|
-
State?: State;
|
|
940
|
-
UserCount?: number;
|
|
934
|
+
Domain?: Domain | undefined;
|
|
935
|
+
IdentityProviderType?: IdentityProviderType | undefined;
|
|
936
|
+
EndpointType?: EndpointType | undefined;
|
|
937
|
+
LoggingRole?: string | undefined;
|
|
938
|
+
ServerId?: string | undefined;
|
|
939
|
+
State?: State | undefined;
|
|
940
|
+
UserCount?: number | undefined;
|
|
941
941
|
}
|
|
942
942
|
export interface ListedUser {
|
|
943
943
|
Arn: string | undefined;
|
|
944
|
-
HomeDirectory?: string;
|
|
945
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
946
|
-
Role?: string;
|
|
947
|
-
SshPublicKeyCount?: number;
|
|
948
|
-
UserName?: string;
|
|
944
|
+
HomeDirectory?: string | undefined;
|
|
945
|
+
HomeDirectoryType?: HomeDirectoryType | undefined;
|
|
946
|
+
Role?: string | undefined;
|
|
947
|
+
SshPublicKeyCount?: number | undefined;
|
|
948
|
+
UserName?: string | undefined;
|
|
949
949
|
}
|
|
950
950
|
export interface ListedWorkflow {
|
|
951
|
-
WorkflowId?: string;
|
|
952
|
-
Description?: string;
|
|
953
|
-
Arn?: string;
|
|
951
|
+
WorkflowId?: string | undefined;
|
|
952
|
+
Description?: string | undefined;
|
|
953
|
+
Arn?: string | undefined;
|
|
954
954
|
}
|
|
955
955
|
export interface ListExecutionsRequest {
|
|
956
|
-
MaxResults?: number;
|
|
957
|
-
NextToken?: string;
|
|
956
|
+
MaxResults?: number | undefined;
|
|
957
|
+
NextToken?: string | undefined;
|
|
958
958
|
WorkflowId: string | undefined;
|
|
959
959
|
}
|
|
960
960
|
export interface ListExecutionsResponse {
|
|
961
|
-
NextToken?: string;
|
|
961
|
+
NextToken?: string | undefined;
|
|
962
962
|
WorkflowId: string | undefined;
|
|
963
963
|
Executions: ListedExecution[] | undefined;
|
|
964
964
|
}
|
|
965
965
|
export interface ListFileTransferResultsRequest {
|
|
966
966
|
ConnectorId: string | undefined;
|
|
967
967
|
TransferId: string | undefined;
|
|
968
|
-
NextToken?: string;
|
|
969
|
-
MaxResults?: number;
|
|
968
|
+
NextToken?: string | undefined;
|
|
969
|
+
MaxResults?: number | undefined;
|
|
970
970
|
}
|
|
971
971
|
export interface ListFileTransferResultsResponse {
|
|
972
972
|
FileTransferResults: ConnectorFileTransferResult[] | undefined;
|
|
973
|
-
NextToken?: string;
|
|
973
|
+
NextToken?: string | undefined;
|
|
974
974
|
}
|
|
975
975
|
export interface ListHostKeysRequest {
|
|
976
|
-
MaxResults?: number;
|
|
977
|
-
NextToken?: string;
|
|
976
|
+
MaxResults?: number | undefined;
|
|
977
|
+
NextToken?: string | undefined;
|
|
978
978
|
ServerId: string | undefined;
|
|
979
979
|
}
|
|
980
980
|
export interface ListHostKeysResponse {
|
|
981
|
-
NextToken?: string;
|
|
981
|
+
NextToken?: string | undefined;
|
|
982
982
|
ServerId: string | undefined;
|
|
983
983
|
HostKeys: ListedHostKey[] | undefined;
|
|
984
984
|
}
|
|
985
985
|
export interface ListProfilesRequest {
|
|
986
|
-
MaxResults?: number;
|
|
987
|
-
NextToken?: string;
|
|
988
|
-
ProfileType?: ProfileType;
|
|
986
|
+
MaxResults?: number | undefined;
|
|
987
|
+
NextToken?: string | undefined;
|
|
988
|
+
ProfileType?: ProfileType | undefined;
|
|
989
989
|
}
|
|
990
990
|
export interface ListProfilesResponse {
|
|
991
|
-
NextToken?: string;
|
|
991
|
+
NextToken?: string | undefined;
|
|
992
992
|
Profiles: ListedProfile[] | undefined;
|
|
993
993
|
}
|
|
994
994
|
export interface ListSecurityPoliciesRequest {
|
|
995
|
-
MaxResults?: number;
|
|
996
|
-
NextToken?: string;
|
|
995
|
+
MaxResults?: number | undefined;
|
|
996
|
+
NextToken?: string | undefined;
|
|
997
997
|
}
|
|
998
998
|
export interface ListSecurityPoliciesResponse {
|
|
999
|
-
NextToken?: string;
|
|
999
|
+
NextToken?: string | undefined;
|
|
1000
1000
|
SecurityPolicyNames: string[] | undefined;
|
|
1001
1001
|
}
|
|
1002
1002
|
export interface ListServersRequest {
|
|
1003
|
-
MaxResults?: number;
|
|
1004
|
-
NextToken?: string;
|
|
1003
|
+
MaxResults?: number | undefined;
|
|
1004
|
+
NextToken?: string | undefined;
|
|
1005
1005
|
}
|
|
1006
1006
|
export interface ListServersResponse {
|
|
1007
|
-
NextToken?: string;
|
|
1007
|
+
NextToken?: string | undefined;
|
|
1008
1008
|
Servers: ListedServer[] | undefined;
|
|
1009
1009
|
}
|
|
1010
1010
|
export interface ListTagsForResourceRequest {
|
|
1011
1011
|
Arn: string | undefined;
|
|
1012
|
-
MaxResults?: number;
|
|
1013
|
-
NextToken?: string;
|
|
1012
|
+
MaxResults?: number | undefined;
|
|
1013
|
+
NextToken?: string | undefined;
|
|
1014
1014
|
}
|
|
1015
1015
|
export interface ListTagsForResourceResponse {
|
|
1016
|
-
Arn?: string;
|
|
1017
|
-
NextToken?: string;
|
|
1018
|
-
Tags?: Tag[];
|
|
1016
|
+
Arn?: string | undefined;
|
|
1017
|
+
NextToken?: string | undefined;
|
|
1018
|
+
Tags?: Tag[] | undefined;
|
|
1019
1019
|
}
|
|
1020
1020
|
export interface ListUsersRequest {
|
|
1021
|
-
MaxResults?: number;
|
|
1022
|
-
NextToken?: string;
|
|
1021
|
+
MaxResults?: number | undefined;
|
|
1022
|
+
NextToken?: string | undefined;
|
|
1023
1023
|
ServerId: string | undefined;
|
|
1024
1024
|
}
|
|
1025
1025
|
export interface ListUsersResponse {
|
|
1026
|
-
NextToken?: string;
|
|
1026
|
+
NextToken?: string | undefined;
|
|
1027
1027
|
ServerId: string | undefined;
|
|
1028
1028
|
Users: ListedUser[] | undefined;
|
|
1029
1029
|
}
|
|
1030
1030
|
export interface ListWorkflowsRequest {
|
|
1031
|
-
MaxResults?: number;
|
|
1032
|
-
NextToken?: string;
|
|
1031
|
+
MaxResults?: number | undefined;
|
|
1032
|
+
NextToken?: string | undefined;
|
|
1033
1033
|
}
|
|
1034
1034
|
export interface ListWorkflowsResponse {
|
|
1035
|
-
NextToken?: string;
|
|
1035
|
+
NextToken?: string | undefined;
|
|
1036
1036
|
Workflows: ListedWorkflow[] | undefined;
|
|
1037
1037
|
}
|
|
1038
1038
|
export interface UpdateProfileRequest {
|
|
1039
1039
|
ProfileId: string | undefined;
|
|
1040
|
-
CertificateIds?: string[];
|
|
1040
|
+
CertificateIds?: string[] | undefined;
|
|
1041
1041
|
}
|
|
1042
1042
|
export interface UpdateProfileResponse {
|
|
1043
1043
|
ProfileId: string | undefined;
|
|
@@ -1050,21 +1050,21 @@ export interface SendWorkflowStepStateRequest {
|
|
|
1050
1050
|
}
|
|
1051
1051
|
export interface SendWorkflowStepStateResponse {}
|
|
1052
1052
|
export interface UpdateServerRequest {
|
|
1053
|
-
Certificate?: string;
|
|
1054
|
-
ProtocolDetails?: ProtocolDetails;
|
|
1055
|
-
EndpointDetails?: EndpointDetails;
|
|
1056
|
-
EndpointType?: EndpointType;
|
|
1057
|
-
HostKey?: string;
|
|
1058
|
-
IdentityProviderDetails?: IdentityProviderDetails;
|
|
1059
|
-
LoggingRole?: string;
|
|
1060
|
-
PostAuthenticationLoginBanner?: string;
|
|
1061
|
-
PreAuthenticationLoginBanner?: string;
|
|
1062
|
-
Protocols?: Protocol[];
|
|
1063
|
-
SecurityPolicyName?: string;
|
|
1053
|
+
Certificate?: string | undefined;
|
|
1054
|
+
ProtocolDetails?: ProtocolDetails | undefined;
|
|
1055
|
+
EndpointDetails?: EndpointDetails | undefined;
|
|
1056
|
+
EndpointType?: EndpointType | undefined;
|
|
1057
|
+
HostKey?: string | undefined;
|
|
1058
|
+
IdentityProviderDetails?: IdentityProviderDetails | undefined;
|
|
1059
|
+
LoggingRole?: string | undefined;
|
|
1060
|
+
PostAuthenticationLoginBanner?: string | undefined;
|
|
1061
|
+
PreAuthenticationLoginBanner?: string | undefined;
|
|
1062
|
+
Protocols?: Protocol[] | undefined;
|
|
1063
|
+
SecurityPolicyName?: string | undefined;
|
|
1064
1064
|
ServerId: string | undefined;
|
|
1065
|
-
WorkflowDetails?: WorkflowDetails;
|
|
1066
|
-
StructuredLogDestinations?: string[];
|
|
1067
|
-
S3StorageOptions?: S3StorageOptions;
|
|
1065
|
+
WorkflowDetails?: WorkflowDetails | undefined;
|
|
1066
|
+
StructuredLogDestinations?: string[] | undefined;
|
|
1067
|
+
S3StorageOptions?: S3StorageOptions | undefined;
|
|
1068
1068
|
}
|
|
1069
1069
|
export interface UpdateServerResponse {
|
|
1070
1070
|
ServerId: string | undefined;
|
|
@@ -1072,7 +1072,7 @@ export interface UpdateServerResponse {
|
|
|
1072
1072
|
export interface StartDirectoryListingRequest {
|
|
1073
1073
|
ConnectorId: string | undefined;
|
|
1074
1074
|
RemoteDirectoryPath: string | undefined;
|
|
1075
|
-
MaxItems?: number;
|
|
1075
|
+
MaxItems?: number | undefined;
|
|
1076
1076
|
OutputDirectoryPath: string | undefined;
|
|
1077
1077
|
}
|
|
1078
1078
|
export interface StartDirectoryListingResponse {
|
|
@@ -1081,10 +1081,10 @@ export interface StartDirectoryListingResponse {
|
|
|
1081
1081
|
}
|
|
1082
1082
|
export interface StartFileTransferRequest {
|
|
1083
1083
|
ConnectorId: string | undefined;
|
|
1084
|
-
SendFilePaths?: string[];
|
|
1085
|
-
RetrieveFilePaths?: string[];
|
|
1086
|
-
LocalDirectoryPath?: string;
|
|
1087
|
-
RemoteDirectoryPath?: string;
|
|
1084
|
+
SendFilePaths?: string[] | undefined;
|
|
1085
|
+
RetrieveFilePaths?: string[] | undefined;
|
|
1086
|
+
LocalDirectoryPath?: string | undefined;
|
|
1087
|
+
RemoteDirectoryPath?: string | undefined;
|
|
1088
1088
|
}
|
|
1089
1089
|
export interface StartFileTransferResponse {
|
|
1090
1090
|
TransferId: string | undefined;
|
|
@@ -1103,21 +1103,21 @@ export interface TestConnectionRequest {
|
|
|
1103
1103
|
ConnectorId: string | undefined;
|
|
1104
1104
|
}
|
|
1105
1105
|
export interface TestConnectionResponse {
|
|
1106
|
-
ConnectorId?: string;
|
|
1107
|
-
Status?: string;
|
|
1108
|
-
StatusMessage?: string;
|
|
1106
|
+
ConnectorId?: string | undefined;
|
|
1107
|
+
Status?: string | undefined;
|
|
1108
|
+
StatusMessage?: string | undefined;
|
|
1109
1109
|
}
|
|
1110
1110
|
export interface TestIdentityProviderRequest {
|
|
1111
1111
|
ServerId: string | undefined;
|
|
1112
|
-
ServerProtocol?: Protocol;
|
|
1113
|
-
SourceIp?: string;
|
|
1112
|
+
ServerProtocol?: Protocol | undefined;
|
|
1113
|
+
SourceIp?: string | undefined;
|
|
1114
1114
|
UserName: string | undefined;
|
|
1115
|
-
UserPassword?: string;
|
|
1115
|
+
UserPassword?: string | undefined;
|
|
1116
1116
|
}
|
|
1117
1117
|
export interface TestIdentityProviderResponse {
|
|
1118
|
-
Response?: string;
|
|
1118
|
+
Response?: string | undefined;
|
|
1119
1119
|
StatusCode: number | undefined;
|
|
1120
|
-
Message?: string;
|
|
1120
|
+
Message?: string | undefined;
|
|
1121
1121
|
Url: string | undefined;
|
|
1122
1122
|
}
|
|
1123
1123
|
export interface UntagResourceRequest {
|
|
@@ -1125,12 +1125,12 @@ export interface UntagResourceRequest {
|
|
|
1125
1125
|
TagKeys: string[] | undefined;
|
|
1126
1126
|
}
|
|
1127
1127
|
export interface UpdateAccessRequest {
|
|
1128
|
-
HomeDirectory?: string;
|
|
1129
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
1130
|
-
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
1131
|
-
Policy?: string;
|
|
1132
|
-
PosixProfile?: PosixProfile;
|
|
1133
|
-
Role?: string;
|
|
1128
|
+
HomeDirectory?: string | undefined;
|
|
1129
|
+
HomeDirectoryType?: HomeDirectoryType | undefined;
|
|
1130
|
+
HomeDirectoryMappings?: HomeDirectoryMapEntry[] | undefined;
|
|
1131
|
+
Policy?: string | undefined;
|
|
1132
|
+
PosixProfile?: PosixProfile | undefined;
|
|
1133
|
+
Role?: string | undefined;
|
|
1134
1134
|
ServerId: string | undefined;
|
|
1135
1135
|
ExternalId: string | undefined;
|
|
1136
1136
|
}
|
|
@@ -1148,12 +1148,12 @@ export interface UpdateHostKeyResponse {
|
|
|
1148
1148
|
HostKeyId: string | undefined;
|
|
1149
1149
|
}
|
|
1150
1150
|
export interface UpdateUserRequest {
|
|
1151
|
-
HomeDirectory?: string;
|
|
1152
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
1153
|
-
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
1154
|
-
Policy?: string;
|
|
1155
|
-
PosixProfile?: PosixProfile;
|
|
1156
|
-
Role?: string;
|
|
1151
|
+
HomeDirectory?: string | undefined;
|
|
1152
|
+
HomeDirectoryType?: HomeDirectoryType | undefined;
|
|
1153
|
+
HomeDirectoryMappings?: HomeDirectoryMapEntry[] | undefined;
|
|
1154
|
+
Policy?: string | undefined;
|
|
1155
|
+
PosixProfile?: PosixProfile | undefined;
|
|
1156
|
+
Role?: string | undefined;
|
|
1157
1157
|
ServerId: string | undefined;
|
|
1158
1158
|
UserName: string | undefined;
|
|
1159
1159
|
}
|