@aws-sdk/client-transfer 3.296.0 → 3.297.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/Transfer.d.ts +59 -0
- package/dist-types/TransferClient.d.ts +24 -4
- package/dist-types/commands/CreateAccessCommand.d.ts +16 -0
- package/dist-types/commands/CreateAgreementCommand.d.ts +16 -0
- package/dist-types/commands/CreateConnectorCommand.d.ts +16 -0
- package/dist-types/commands/CreateProfileCommand.d.ts +16 -0
- package/dist-types/commands/CreateServerCommand.d.ts +16 -0
- package/dist-types/commands/CreateUserCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccessCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAgreementCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteHostKeyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSshPublicKeyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccessCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAgreementCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeExecutionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeHostKeyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeProfileCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSecurityPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +16 -0
- package/dist-types/commands/ImportHostKeyCommand.d.ts +16 -0
- package/dist-types/commands/ImportSshPublicKeyCommand.d.ts +16 -0
- package/dist-types/commands/ListAccessesCommand.d.ts +16 -0
- package/dist-types/commands/ListAgreementsCommand.d.ts +16 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +16 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListHostKeysCommand.d.ts +16 -0
- package/dist-types/commands/ListProfilesCommand.d.ts +16 -0
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/ListServersCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListUsersCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +16 -0
- package/dist-types/commands/SendWorkflowStepStateCommand.d.ts +16 -0
- package/dist-types/commands/StartFileTransferCommand.d.ts +16 -0
- package/dist-types/commands/StartServerCommand.d.ts +16 -0
- package/dist-types/commands/StopServerCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TestIdentityProviderCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAccessCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAgreementCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCertificateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHostKeyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServerCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +16 -0
- package/dist-types/models/TransferServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +478 -43
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccessesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAgreementsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCertificatesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProfilesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSecurityPoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/dist-types/pagination/ListUsersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkflowsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { TransferServiceException as __BaseException } from "./TransferServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,24 +13,39 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
*/
|
|
13
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
15
19
|
export declare enum AgreementStatusType {
|
|
16
20
|
ACTIVE = "ACTIVE",
|
|
17
21
|
INACTIVE = "INACTIVE"
|
|
18
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
19
26
|
export declare enum CompressionEnum {
|
|
20
27
|
DISABLED = "DISABLED",
|
|
21
28
|
ZLIB = "ZLIB"
|
|
22
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
23
33
|
export declare enum EncryptionAlg {
|
|
24
34
|
AES128_CBC = "AES128_CBC",
|
|
25
35
|
AES192_CBC = "AES192_CBC",
|
|
26
36
|
AES256_CBC = "AES256_CBC",
|
|
27
37
|
NONE = "NONE"
|
|
28
38
|
}
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
29
42
|
export declare enum MdnResponse {
|
|
30
43
|
NONE = "NONE",
|
|
31
44
|
SYNC = "SYNC"
|
|
32
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
33
49
|
export declare enum MdnSigningAlg {
|
|
34
50
|
DEFAULT = "DEFAULT",
|
|
35
51
|
NONE = "NONE",
|
|
@@ -38,6 +54,9 @@ export declare enum MdnSigningAlg {
|
|
|
38
54
|
SHA384 = "SHA384",
|
|
39
55
|
SHA512 = "SHA512"
|
|
40
56
|
}
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
41
60
|
export declare enum SigningAlg {
|
|
42
61
|
NONE = "NONE",
|
|
43
62
|
SHA1 = "SHA1",
|
|
@@ -46,6 +65,7 @@ export declare enum SigningAlg {
|
|
|
46
65
|
SHA512 = "SHA512"
|
|
47
66
|
}
|
|
48
67
|
/**
|
|
68
|
+
* @public
|
|
49
69
|
* <p>Contains the details for a connector object. The connector object is used for AS2 outbound
|
|
50
70
|
* processes, to connect the Transfer Family customer with the trading partner.</p>
|
|
51
71
|
*/
|
|
@@ -101,23 +121,36 @@ export interface As2ConnectorConfig {
|
|
|
101
121
|
*/
|
|
102
122
|
MdnResponse?: MdnResponse | string;
|
|
103
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
*/
|
|
104
127
|
export declare enum As2Transport {
|
|
105
128
|
HTTP = "HTTP"
|
|
106
129
|
}
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
107
133
|
export declare enum CertificateStatusType {
|
|
108
134
|
ACTIVE = "ACTIVE",
|
|
109
135
|
INACTIVE = "INACTIVE",
|
|
110
136
|
PENDING_ROTATION = "PENDING_ROTATION"
|
|
111
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
112
141
|
export declare enum CertificateType {
|
|
113
142
|
CERTIFICATE = "CERTIFICATE",
|
|
114
143
|
CERTIFICATE_WITH_PRIVATE_KEY = "CERTIFICATE_WITH_PRIVATE_KEY"
|
|
115
144
|
}
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
116
148
|
export declare enum CertificateUsageType {
|
|
117
149
|
ENCRYPTION = "ENCRYPTION",
|
|
118
150
|
SIGNING = "SIGNING"
|
|
119
151
|
}
|
|
120
152
|
/**
|
|
153
|
+
* @public
|
|
121
154
|
* <p>This exception is thrown when the <code>UpdateServer</code> is called for a file transfer
|
|
122
155
|
* protocol-enabled server that has VPC as the endpoint type and the server's
|
|
123
156
|
* <code>VpcEndpointID</code> is not in the available state.</p>
|
|
@@ -132,6 +165,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
132
165
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
133
166
|
}
|
|
134
167
|
/**
|
|
168
|
+
* @public
|
|
135
169
|
* <p>Specifies the details for the file location for the file that's being used in the workflow. Only applicable if you are using Amazon Elastic File Systems
|
|
136
170
|
* (Amazon EFS) for storage.</p>
|
|
137
171
|
* <p>
|
|
@@ -148,6 +182,7 @@ export interface EfsFileLocation {
|
|
|
148
182
|
Path?: string;
|
|
149
183
|
}
|
|
150
184
|
/**
|
|
185
|
+
* @public
|
|
151
186
|
* <p>Specifies the customer input Amazon S3 file location. If it is used inside <code>copyStepDetails.DestinationFileLocation</code>, it should be the S3 copy destination.</p>
|
|
152
187
|
* <p>
|
|
153
188
|
* You need to provide the bucket and key.
|
|
@@ -171,6 +206,7 @@ export interface S3InputFileLocation {
|
|
|
171
206
|
Key?: string;
|
|
172
207
|
}
|
|
173
208
|
/**
|
|
209
|
+
* @public
|
|
174
210
|
* <p>Specifies the location for the file that's being processed.</p>
|
|
175
211
|
*/
|
|
176
212
|
export interface InputFileLocation {
|
|
@@ -184,11 +220,15 @@ export interface InputFileLocation {
|
|
|
184
220
|
*/
|
|
185
221
|
EfsFileLocation?: EfsFileLocation;
|
|
186
222
|
}
|
|
223
|
+
/**
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
187
226
|
export declare enum OverwriteExisting {
|
|
188
227
|
FALSE = "FALSE",
|
|
189
228
|
TRUE = "TRUE"
|
|
190
229
|
}
|
|
191
230
|
/**
|
|
231
|
+
* @public
|
|
192
232
|
* <p>Each step type has its own <code>StepDetails</code> structure.</p>
|
|
193
233
|
*/
|
|
194
234
|
export interface CopyStepDetails {
|
|
@@ -197,15 +237,15 @@ export interface CopyStepDetails {
|
|
|
197
237
|
*/
|
|
198
238
|
Name?: string;
|
|
199
239
|
/**
|
|
200
|
-
* <p>Specifies the location for the file being copied. Use <code
|
|
240
|
+
* <p>Specifies the location for the file being copied. Use <code>$\{Transfer:username\}</code> or <code>$\{Transfer:UploadDate\}</code> in this field to parametrize the destination
|
|
201
241
|
* prefix by username or uploaded date.</p>
|
|
202
242
|
* <ul>
|
|
203
243
|
* <li>
|
|
204
|
-
* <p>Set the value of <code>DestinationFileLocation</code> to <code
|
|
244
|
+
* <p>Set the value of <code>DestinationFileLocation</code> to <code>$\{Transfer:username\}</code> to copy uploaded files to
|
|
205
245
|
* an Amazon S3 bucket that is prefixed with the name of the Transfer Family user that uploaded the file.</p>
|
|
206
246
|
* </li>
|
|
207
247
|
* <li>
|
|
208
|
-
* <p>Set the value of <code>DestinationFileLocation</code> to <code
|
|
248
|
+
* <p>Set the value of <code>DestinationFileLocation</code> to <code>$\{Transfer:UploadDate\}</code> to copy uploaded files to
|
|
209
249
|
* an Amazon S3 bucket that is prefixed with the date of the upload.</p>
|
|
210
250
|
* <note>
|
|
211
251
|
* <p>The system resolves <code>UploadDate</code> to a date format of <i>YYYY-MM-DD</i>, based on the date the file
|
|
@@ -225,23 +265,24 @@ export interface CopyStepDetails {
|
|
|
225
265
|
* for the workflow.</p>
|
|
226
266
|
* <ul>
|
|
227
267
|
* <li>
|
|
228
|
-
* <p>To use the previous file as the input, enter <code
|
|
268
|
+
* <p>To use the previous file as the input, enter <code>$\{previous.file\}</code>.
|
|
229
269
|
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
230
270
|
* This is the default value.</p>
|
|
231
271
|
* </li>
|
|
232
272
|
* <li>
|
|
233
|
-
* <p>To use the originally uploaded file location as input for this step, enter <code
|
|
273
|
+
* <p>To use the originally uploaded file location as input for this step, enter <code>$\{original.file\}</code>.</p>
|
|
234
274
|
* </li>
|
|
235
275
|
* </ul>
|
|
236
276
|
*/
|
|
237
277
|
SourceFileLocation?: string;
|
|
238
278
|
}
|
|
239
279
|
/**
|
|
280
|
+
* @public
|
|
240
281
|
* <p>Represents an object that contains entries and targets for
|
|
241
282
|
* <code>HomeDirectoryMappings</code>.</p>
|
|
242
283
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example for <code>chroot</code>.</p>
|
|
243
284
|
* <p>
|
|
244
|
-
* <code>[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
285
|
+
* <code>[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]</code>
|
|
245
286
|
* </p>
|
|
246
287
|
*/
|
|
247
288
|
export interface HomeDirectoryMapEntry {
|
|
@@ -254,11 +295,15 @@ export interface HomeDirectoryMapEntry {
|
|
|
254
295
|
*/
|
|
255
296
|
Target: string | undefined;
|
|
256
297
|
}
|
|
298
|
+
/**
|
|
299
|
+
* @public
|
|
300
|
+
*/
|
|
257
301
|
export declare enum HomeDirectoryType {
|
|
258
302
|
LOGICAL = "LOGICAL",
|
|
259
303
|
PATH = "PATH"
|
|
260
304
|
}
|
|
261
305
|
/**
|
|
306
|
+
* @public
|
|
262
307
|
* <p>The full POSIX identity, including user ID (<code>Uid</code>), group ID
|
|
263
308
|
* (<code>Gid</code>), and any secondary groups IDs (<code>SecondaryGids</code>), that controls
|
|
264
309
|
* your users' access to your Amazon EFS file systems. The POSIX permissions that are set on
|
|
@@ -279,6 +324,9 @@ export interface PosixProfile {
|
|
|
279
324
|
*/
|
|
280
325
|
SecondaryGids?: number[];
|
|
281
326
|
}
|
|
327
|
+
/**
|
|
328
|
+
* @public
|
|
329
|
+
*/
|
|
282
330
|
export interface CreateAccessRequest {
|
|
283
331
|
/**
|
|
284
332
|
* <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
|
|
@@ -303,7 +351,7 @@ export interface CreateAccessRequest {
|
|
|
303
351
|
* <i>LOGICAL</i>.</p>
|
|
304
352
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example.</p>
|
|
305
353
|
* <p>
|
|
306
|
-
* <code>[ { "Entry": "/directory1", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
354
|
+
* <code>[ \{ "Entry": "/directory1", "Target": "/bucket_name/home/mydirectory" \} ]</code>
|
|
307
355
|
* </p>
|
|
308
356
|
* <p>In most cases, you can use this value instead of the session policy to lock down your
|
|
309
357
|
* user to the designated home directory ("<code>chroot</code>"). To do this, you can set
|
|
@@ -311,14 +359,14 @@ export interface CreateAccessRequest {
|
|
|
311
359
|
* <code>HomeDirectory</code> parameter value.</p>
|
|
312
360
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example for <code>chroot</code>.</p>
|
|
313
361
|
* <p>
|
|
314
|
-
* <code>[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
362
|
+
* <code>[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]</code>
|
|
315
363
|
* </p>
|
|
316
364
|
*/
|
|
317
365
|
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
318
366
|
/**
|
|
319
367
|
* <p>A session policy for your user so that you can use the same Identity and Access Management (IAM) role across multiple users. This policy scopes down a user's
|
|
320
|
-
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code
|
|
321
|
-
* <code
|
|
368
|
+
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code>$\{Transfer:UserName\}</code>,
|
|
369
|
+
* <code>$\{Transfer:HomeDirectory\}</code>, and <code>$\{Transfer:HomeBucket\}</code>.</p>
|
|
322
370
|
* <note>
|
|
323
371
|
* <p>This policy applies only when the domain of <code>ServerId</code> is Amazon S3. Amazon EFS does not use session policies.</p>
|
|
324
372
|
* <p>For session policies, Transfer Family stores the policy as a JSON blob, instead
|
|
@@ -356,7 +404,7 @@ export interface CreateAccessRequest {
|
|
|
356
404
|
* resources over the enabled protocols using Transfer Family. If you know the group name,
|
|
357
405
|
* you can view the SID values by running the following command using Windows PowerShell.</p>
|
|
358
406
|
* <p>
|
|
359
|
-
* <code>Get-ADGroup -Filter {samAccountName -like "<i>YourGroupName</i>*"} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
407
|
+
* <code>Get-ADGroup -Filter \{samAccountName -like "<i>YourGroupName</i>*"\} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
360
408
|
* </p>
|
|
361
409
|
* <p>In that command, replace <i>YourGroupName</i> with the name of your Active Directory group.</p>
|
|
362
410
|
* <p>The regular expression used to validate this parameter is a string of characters consisting of uppercase and lowercase alphanumeric characters with no spaces.
|
|
@@ -364,6 +412,9 @@ export interface CreateAccessRequest {
|
|
|
364
412
|
*/
|
|
365
413
|
ExternalId: string | undefined;
|
|
366
414
|
}
|
|
415
|
+
/**
|
|
416
|
+
* @public
|
|
417
|
+
*/
|
|
367
418
|
export interface CreateAccessResponse {
|
|
368
419
|
/**
|
|
369
420
|
* <p>The identifier of the server that the user is attached to.</p>
|
|
@@ -376,6 +427,7 @@ export interface CreateAccessResponse {
|
|
|
376
427
|
ExternalId: string | undefined;
|
|
377
428
|
}
|
|
378
429
|
/**
|
|
430
|
+
* @public
|
|
379
431
|
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
380
432
|
*/
|
|
381
433
|
export declare class InternalServiceError extends __BaseException {
|
|
@@ -388,6 +440,7 @@ export declare class InternalServiceError extends __BaseException {
|
|
|
388
440
|
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
389
441
|
}
|
|
390
442
|
/**
|
|
443
|
+
* @public
|
|
391
444
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
392
445
|
*/
|
|
393
446
|
export declare class InvalidRequestException extends __BaseException {
|
|
@@ -400,6 +453,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
400
453
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
401
454
|
}
|
|
402
455
|
/**
|
|
456
|
+
* @public
|
|
403
457
|
* <p>The requested resource does not exist.</p>
|
|
404
458
|
*/
|
|
405
459
|
export declare class ResourceExistsException extends __BaseException {
|
|
@@ -414,6 +468,7 @@ export declare class ResourceExistsException extends __BaseException {
|
|
|
414
468
|
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
415
469
|
}
|
|
416
470
|
/**
|
|
471
|
+
* @public
|
|
417
472
|
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
418
473
|
* service.</p>
|
|
419
474
|
*/
|
|
@@ -429,6 +484,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
429
484
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
430
485
|
}
|
|
431
486
|
/**
|
|
487
|
+
* @public
|
|
432
488
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
433
489
|
*/
|
|
434
490
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
@@ -441,6 +497,7 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
441
497
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
442
498
|
}
|
|
443
499
|
/**
|
|
500
|
+
* @public
|
|
444
501
|
* <p>Creates a key-value pair for a specific resource. Tags are metadata that you can use to
|
|
445
502
|
* search for and group a resource for various purposes. You can apply tags to servers, users,
|
|
446
503
|
* and roles. A tag key can take more than one value. For example, to group servers for
|
|
@@ -457,6 +514,9 @@ export interface Tag {
|
|
|
457
514
|
*/
|
|
458
515
|
Value: string | undefined;
|
|
459
516
|
}
|
|
517
|
+
/**
|
|
518
|
+
* @public
|
|
519
|
+
*/
|
|
460
520
|
export interface CreateAgreementRequest {
|
|
461
521
|
/**
|
|
462
522
|
* <p>A name or short description to identify the agreement. </p>
|
|
@@ -504,6 +564,9 @@ export interface CreateAgreementRequest {
|
|
|
504
564
|
*/
|
|
505
565
|
Tags?: Tag[];
|
|
506
566
|
}
|
|
567
|
+
/**
|
|
568
|
+
* @public
|
|
569
|
+
*/
|
|
507
570
|
export interface CreateAgreementResponse {
|
|
508
571
|
/**
|
|
509
572
|
* <p>The unique identifier for the agreement. Use this ID for deleting, or updating an
|
|
@@ -513,6 +576,7 @@ export interface CreateAgreementResponse {
|
|
|
513
576
|
AgreementId: string | undefined;
|
|
514
577
|
}
|
|
515
578
|
/**
|
|
579
|
+
* @public
|
|
516
580
|
* <p>The request was denied due to request throttling.</p>
|
|
517
581
|
*/
|
|
518
582
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -524,6 +588,9 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
524
588
|
*/
|
|
525
589
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
526
590
|
}
|
|
591
|
+
/**
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
527
594
|
export interface CreateConnectorRequest {
|
|
528
595
|
/**
|
|
529
596
|
* <p>The URL of the partner's AS2 endpoint.</p>
|
|
@@ -557,16 +624,25 @@ export interface CreateConnectorRequest {
|
|
|
557
624
|
*/
|
|
558
625
|
Tags?: Tag[];
|
|
559
626
|
}
|
|
627
|
+
/**
|
|
628
|
+
* @public
|
|
629
|
+
*/
|
|
560
630
|
export interface CreateConnectorResponse {
|
|
561
631
|
/**
|
|
562
632
|
* <p>The unique identifier for the connector, returned after the API call succeeds.</p>
|
|
563
633
|
*/
|
|
564
634
|
ConnectorId: string | undefined;
|
|
565
635
|
}
|
|
636
|
+
/**
|
|
637
|
+
* @public
|
|
638
|
+
*/
|
|
566
639
|
export declare enum ProfileType {
|
|
567
640
|
LOCAL = "LOCAL",
|
|
568
641
|
PARTNER = "PARTNER"
|
|
569
642
|
}
|
|
643
|
+
/**
|
|
644
|
+
* @public
|
|
645
|
+
*/
|
|
570
646
|
export interface CreateProfileRequest {
|
|
571
647
|
/**
|
|
572
648
|
* <p>The <code>As2Id</code> is the <i>AS2-name</i>, as defined in the
|
|
@@ -596,17 +672,24 @@ export interface CreateProfileRequest {
|
|
|
596
672
|
*/
|
|
597
673
|
Tags?: Tag[];
|
|
598
674
|
}
|
|
675
|
+
/**
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
599
678
|
export interface CreateProfileResponse {
|
|
600
679
|
/**
|
|
601
680
|
* <p>The unique identifier for the AS2 profile, returned after the API call succeeds.</p>
|
|
602
681
|
*/
|
|
603
682
|
ProfileId: string | undefined;
|
|
604
683
|
}
|
|
684
|
+
/**
|
|
685
|
+
* @public
|
|
686
|
+
*/
|
|
605
687
|
export declare enum Domain {
|
|
606
688
|
EFS = "EFS",
|
|
607
689
|
S3 = "S3"
|
|
608
690
|
}
|
|
609
691
|
/**
|
|
692
|
+
* @public
|
|
610
693
|
* <p>The virtual private cloud (VPC) endpoint settings that are configured for your file
|
|
611
694
|
* transfer protocol-enabled server. With a VPC endpoint, you can restrict access to your server
|
|
612
695
|
* and resources only within your VPC. To control incoming internet traffic, invoke the
|
|
@@ -673,12 +756,16 @@ export interface EndpointDetails {
|
|
|
673
756
|
*/
|
|
674
757
|
SecurityGroupIds?: string[];
|
|
675
758
|
}
|
|
759
|
+
/**
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
676
762
|
export declare enum EndpointType {
|
|
677
763
|
PUBLIC = "PUBLIC",
|
|
678
764
|
VPC = "VPC",
|
|
679
765
|
VPC_ENDPOINT = "VPC_ENDPOINT"
|
|
680
766
|
}
|
|
681
767
|
/**
|
|
768
|
+
* @public
|
|
682
769
|
* <p>Returns information related to the type of user authentication that is in use for a file
|
|
683
770
|
* transfer protocol-enabled server's users. A server can have only one method of
|
|
684
771
|
* authentication.</p>
|
|
@@ -702,22 +789,32 @@ export interface IdentityProviderDetails {
|
|
|
702
789
|
*/
|
|
703
790
|
Function?: string;
|
|
704
791
|
}
|
|
792
|
+
/**
|
|
793
|
+
* @public
|
|
794
|
+
*/
|
|
705
795
|
export declare enum IdentityProviderType {
|
|
706
796
|
API_GATEWAY = "API_GATEWAY",
|
|
707
797
|
AWS_DIRECTORY_SERVICE = "AWS_DIRECTORY_SERVICE",
|
|
708
798
|
AWS_LAMBDA = "AWS_LAMBDA",
|
|
709
799
|
SERVICE_MANAGED = "SERVICE_MANAGED"
|
|
710
800
|
}
|
|
801
|
+
/**
|
|
802
|
+
* @public
|
|
803
|
+
*/
|
|
711
804
|
export declare enum SetStatOption {
|
|
712
805
|
DEFAULT = "DEFAULT",
|
|
713
806
|
ENABLE_NO_OP = "ENABLE_NO_OP"
|
|
714
807
|
}
|
|
808
|
+
/**
|
|
809
|
+
* @public
|
|
810
|
+
*/
|
|
715
811
|
export declare enum TlsSessionResumptionMode {
|
|
716
812
|
DISABLED = "DISABLED",
|
|
717
813
|
ENABLED = "ENABLED",
|
|
718
814
|
ENFORCED = "ENFORCED"
|
|
719
815
|
}
|
|
720
816
|
/**
|
|
817
|
+
* @public
|
|
721
818
|
* <p>
|
|
722
819
|
* The protocol settings that are configured for your server.
|
|
723
820
|
* </p>
|
|
@@ -798,6 +895,9 @@ export interface ProtocolDetails {
|
|
|
798
895
|
*/
|
|
799
896
|
As2Transports?: (As2Transport | string)[];
|
|
800
897
|
}
|
|
898
|
+
/**
|
|
899
|
+
* @public
|
|
900
|
+
*/
|
|
801
901
|
export declare enum Protocol {
|
|
802
902
|
AS2 = "AS2",
|
|
803
903
|
FTP = "FTP",
|
|
@@ -805,6 +905,7 @@ export declare enum Protocol {
|
|
|
805
905
|
SFTP = "SFTP"
|
|
806
906
|
}
|
|
807
907
|
/**
|
|
908
|
+
* @public
|
|
808
909
|
* <p>Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.</p>
|
|
809
910
|
* <p>In addition to a workflow to execute when a file is uploaded completely, <code>WorkflowDetails</code> can also contain a
|
|
810
911
|
* workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when
|
|
@@ -822,6 +923,7 @@ export interface WorkflowDetail {
|
|
|
822
923
|
ExecutionRole: string | undefined;
|
|
823
924
|
}
|
|
824
925
|
/**
|
|
926
|
+
* @public
|
|
825
927
|
* <p>Container for the <code>WorkflowDetail</code> data type.
|
|
826
928
|
* It is used by actions that trigger a workflow to begin execution.</p>
|
|
827
929
|
*/
|
|
@@ -830,7 +932,7 @@ export interface WorkflowDetails {
|
|
|
830
932
|
* <p>A trigger that starts a workflow: the workflow begins to execute after a file is uploaded.</p>
|
|
831
933
|
* <p>To remove an associated workflow from a server, you can provide an empty <code>OnUpload</code> object, as in the following example.</p>
|
|
832
934
|
* <p>
|
|
833
|
-
* <code>aws transfer update-server --server-id s-01234567890abcdef --workflow-details '{"OnUpload":[]}'</code>
|
|
935
|
+
* <code>aws transfer update-server --server-id s-01234567890abcdef --workflow-details '\{"OnUpload":[]\}'</code>
|
|
834
936
|
* </p>
|
|
835
937
|
*/
|
|
836
938
|
OnUpload?: WorkflowDetail[];
|
|
@@ -841,6 +943,9 @@ export interface WorkflowDetails {
|
|
|
841
943
|
*/
|
|
842
944
|
OnPartialUpload?: WorkflowDetail[];
|
|
843
945
|
}
|
|
946
|
+
/**
|
|
947
|
+
* @public
|
|
948
|
+
*/
|
|
844
949
|
export interface CreateServerRequest {
|
|
845
950
|
/**
|
|
846
951
|
* <p>The Amazon Resource Name (ARN) of the Certificate Manager (ACM) certificate. Required
|
|
@@ -1081,12 +1186,18 @@ export interface CreateServerRequest {
|
|
|
1081
1186
|
*/
|
|
1082
1187
|
WorkflowDetails?: WorkflowDetails;
|
|
1083
1188
|
}
|
|
1189
|
+
/**
|
|
1190
|
+
* @public
|
|
1191
|
+
*/
|
|
1084
1192
|
export interface CreateServerResponse {
|
|
1085
1193
|
/**
|
|
1086
1194
|
* <p>The service-assigned identifier of the server that is created.</p>
|
|
1087
1195
|
*/
|
|
1088
1196
|
ServerId: string | undefined;
|
|
1089
1197
|
}
|
|
1198
|
+
/**
|
|
1199
|
+
* @public
|
|
1200
|
+
*/
|
|
1090
1201
|
export interface CreateUserRequest {
|
|
1091
1202
|
/**
|
|
1092
1203
|
* <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
|
|
@@ -1111,8 +1222,8 @@ export interface CreateUserRequest {
|
|
|
1111
1222
|
* <i>LOGICAL</i>.</p>
|
|
1112
1223
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example.</p>
|
|
1113
1224
|
* <p>
|
|
1114
|
-
* <code>[ { "Entry": "/directory1", "Target":
|
|
1115
|
-
* "/bucket_name/home/mydirectory" } ]</code>
|
|
1225
|
+
* <code>[ \{ "Entry": "/directory1", "Target":
|
|
1226
|
+
* "/bucket_name/home/mydirectory" \} ]</code>
|
|
1116
1227
|
* </p>
|
|
1117
1228
|
* <p>In most cases, you can use this value instead of the session policy to lock your user
|
|
1118
1229
|
* down to the designated home directory ("<code>chroot</code>"). To do this, you can set
|
|
@@ -1120,14 +1231,14 @@ export interface CreateUserRequest {
|
|
|
1120
1231
|
* parameter value.</p>
|
|
1121
1232
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example for <code>chroot</code>.</p>
|
|
1122
1233
|
* <p>
|
|
1123
|
-
* <code>[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
1234
|
+
* <code>[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]</code>
|
|
1124
1235
|
* </p>
|
|
1125
1236
|
*/
|
|
1126
1237
|
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
1127
1238
|
/**
|
|
1128
1239
|
* <p>A session policy for your user so that you can use the same Identity and Access Management (IAM) role across multiple users. This policy scopes down a user's
|
|
1129
|
-
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code
|
|
1130
|
-
* <code
|
|
1240
|
+
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code>$\{Transfer:UserName\}</code>,
|
|
1241
|
+
* <code>$\{Transfer:HomeDirectory\}</code>, and <code>$\{Transfer:HomeBucket\}</code>.</p>
|
|
1131
1242
|
* <note>
|
|
1132
1243
|
* <p>This policy applies only when the domain of <code>ServerId</code> is Amazon S3. Amazon EFS does not use session policies.</p>
|
|
1133
1244
|
* <p>For session policies, Transfer Family stores the policy as a JSON blob, instead
|
|
@@ -1195,6 +1306,9 @@ export interface CreateUserRequest {
|
|
|
1195
1306
|
*/
|
|
1196
1307
|
UserName: string | undefined;
|
|
1197
1308
|
}
|
|
1309
|
+
/**
|
|
1310
|
+
* @public
|
|
1311
|
+
*/
|
|
1198
1312
|
export interface CreateUserResponse {
|
|
1199
1313
|
/**
|
|
1200
1314
|
* <p>The identifier of the server that the user is attached to.</p>
|
|
@@ -1206,6 +1320,7 @@ export interface CreateUserResponse {
|
|
|
1206
1320
|
UserName: string | undefined;
|
|
1207
1321
|
}
|
|
1208
1322
|
/**
|
|
1323
|
+
* @public
|
|
1209
1324
|
* <p>Each step type has its own <code>StepDetails</code> structure.</p>
|
|
1210
1325
|
*/
|
|
1211
1326
|
export interface CustomStepDetails {
|
|
@@ -1226,21 +1341,25 @@ export interface CustomStepDetails {
|
|
|
1226
1341
|
* for the workflow.</p>
|
|
1227
1342
|
* <ul>
|
|
1228
1343
|
* <li>
|
|
1229
|
-
* <p>To use the previous file as the input, enter <code
|
|
1344
|
+
* <p>To use the previous file as the input, enter <code>$\{previous.file\}</code>.
|
|
1230
1345
|
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
1231
1346
|
* This is the default value.</p>
|
|
1232
1347
|
* </li>
|
|
1233
1348
|
* <li>
|
|
1234
|
-
* <p>To use the originally uploaded file location as input for this step, enter <code
|
|
1349
|
+
* <p>To use the originally uploaded file location as input for this step, enter <code>$\{original.file\}</code>.</p>
|
|
1235
1350
|
* </li>
|
|
1236
1351
|
* </ul>
|
|
1237
1352
|
*/
|
|
1238
1353
|
SourceFileLocation?: string;
|
|
1239
1354
|
}
|
|
1355
|
+
/**
|
|
1356
|
+
* @public
|
|
1357
|
+
*/
|
|
1240
1358
|
export declare enum EncryptionType {
|
|
1241
1359
|
PGP = "PGP"
|
|
1242
1360
|
}
|
|
1243
1361
|
/**
|
|
1362
|
+
* @public
|
|
1244
1363
|
* <p>Each step type has its own <code>StepDetails</code> structure.</p>
|
|
1245
1364
|
*/
|
|
1246
1365
|
export interface DecryptStepDetails {
|
|
@@ -1257,12 +1376,12 @@ export interface DecryptStepDetails {
|
|
|
1257
1376
|
* for the workflow.</p>
|
|
1258
1377
|
* <ul>
|
|
1259
1378
|
* <li>
|
|
1260
|
-
* <p>To use the previous file as the input, enter <code
|
|
1379
|
+
* <p>To use the previous file as the input, enter <code>$\{previous.file\}</code>.
|
|
1261
1380
|
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
1262
1381
|
* This is the default value.</p>
|
|
1263
1382
|
* </li>
|
|
1264
1383
|
* <li>
|
|
1265
|
-
* <p>To use the originally uploaded file location as input for this step, enter <code
|
|
1384
|
+
* <p>To use the originally uploaded file location as input for this step, enter <code>$\{original.file\}</code>.</p>
|
|
1266
1385
|
* </li>
|
|
1267
1386
|
* </ul>
|
|
1268
1387
|
*/
|
|
@@ -1278,6 +1397,7 @@ export interface DecryptStepDetails {
|
|
|
1278
1397
|
DestinationFileLocation: InputFileLocation | undefined;
|
|
1279
1398
|
}
|
|
1280
1399
|
/**
|
|
1400
|
+
* @public
|
|
1281
1401
|
* <p>The name of the step, used to identify the delete step.</p>
|
|
1282
1402
|
*/
|
|
1283
1403
|
export interface DeleteStepDetails {
|
|
@@ -1290,18 +1410,19 @@ export interface DeleteStepDetails {
|
|
|
1290
1410
|
* for the workflow.</p>
|
|
1291
1411
|
* <ul>
|
|
1292
1412
|
* <li>
|
|
1293
|
-
* <p>To use the previous file as the input, enter <code
|
|
1413
|
+
* <p>To use the previous file as the input, enter <code>$\{previous.file\}</code>.
|
|
1294
1414
|
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
1295
1415
|
* This is the default value.</p>
|
|
1296
1416
|
* </li>
|
|
1297
1417
|
* <li>
|
|
1298
|
-
* <p>To use the originally uploaded file location as input for this step, enter <code
|
|
1418
|
+
* <p>To use the originally uploaded file location as input for this step, enter <code>$\{original.file\}</code>.</p>
|
|
1299
1419
|
* </li>
|
|
1300
1420
|
* </ul>
|
|
1301
1421
|
*/
|
|
1302
1422
|
SourceFileLocation?: string;
|
|
1303
1423
|
}
|
|
1304
1424
|
/**
|
|
1425
|
+
* @public
|
|
1305
1426
|
* <p>Specifies the key-value pair that are assigned to a file during the execution of a Tagging step.</p>
|
|
1306
1427
|
*/
|
|
1307
1428
|
export interface S3Tag {
|
|
@@ -1315,6 +1436,7 @@ export interface S3Tag {
|
|
|
1315
1436
|
Value: string | undefined;
|
|
1316
1437
|
}
|
|
1317
1438
|
/**
|
|
1439
|
+
* @public
|
|
1318
1440
|
* <p>Each step type has its own <code>StepDetails</code> structure.</p>
|
|
1319
1441
|
* <p>The key/value pairs used to tag a file during the execution of a workflow step.</p>
|
|
1320
1442
|
*/
|
|
@@ -1332,17 +1454,20 @@ export interface TagStepDetails {
|
|
|
1332
1454
|
* for the workflow.</p>
|
|
1333
1455
|
* <ul>
|
|
1334
1456
|
* <li>
|
|
1335
|
-
* <p>To use the previous file as the input, enter <code
|
|
1457
|
+
* <p>To use the previous file as the input, enter <code>$\{previous.file\}</code>.
|
|
1336
1458
|
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
1337
1459
|
* This is the default value.</p>
|
|
1338
1460
|
* </li>
|
|
1339
1461
|
* <li>
|
|
1340
|
-
* <p>To use the originally uploaded file location as input for this step, enter <code
|
|
1462
|
+
* <p>To use the originally uploaded file location as input for this step, enter <code>$\{original.file\}</code>.</p>
|
|
1341
1463
|
* </li>
|
|
1342
1464
|
* </ul>
|
|
1343
1465
|
*/
|
|
1344
1466
|
SourceFileLocation?: string;
|
|
1345
1467
|
}
|
|
1468
|
+
/**
|
|
1469
|
+
* @public
|
|
1470
|
+
*/
|
|
1346
1471
|
export declare enum WorkflowStepType {
|
|
1347
1472
|
COPY = "COPY",
|
|
1348
1473
|
CUSTOM = "CUSTOM",
|
|
@@ -1351,6 +1476,7 @@ export declare enum WorkflowStepType {
|
|
|
1351
1476
|
TAG = "TAG"
|
|
1352
1477
|
}
|
|
1353
1478
|
/**
|
|
1479
|
+
* @public
|
|
1354
1480
|
* <p>The basic building block of a workflow.</p>
|
|
1355
1481
|
*/
|
|
1356
1482
|
export interface WorkflowStep {
|
|
@@ -1450,6 +1576,9 @@ export interface WorkflowStep {
|
|
|
1450
1576
|
*/
|
|
1451
1577
|
DecryptStepDetails?: DecryptStepDetails;
|
|
1452
1578
|
}
|
|
1579
|
+
/**
|
|
1580
|
+
* @public
|
|
1581
|
+
*/
|
|
1453
1582
|
export interface CreateWorkflowRequest {
|
|
1454
1583
|
/**
|
|
1455
1584
|
* <p>A textual description for the workflow.</p>
|
|
@@ -1516,16 +1645,25 @@ export interface CreateWorkflowRequest {
|
|
|
1516
1645
|
*/
|
|
1517
1646
|
Tags?: Tag[];
|
|
1518
1647
|
}
|
|
1648
|
+
/**
|
|
1649
|
+
* @public
|
|
1650
|
+
*/
|
|
1519
1651
|
export interface CreateWorkflowResponse {
|
|
1520
1652
|
/**
|
|
1521
1653
|
* <p>A unique identifier for the workflow.</p>
|
|
1522
1654
|
*/
|
|
1523
1655
|
WorkflowId: string | undefined;
|
|
1524
1656
|
}
|
|
1657
|
+
/**
|
|
1658
|
+
* @public
|
|
1659
|
+
*/
|
|
1525
1660
|
export declare enum CustomStepStatus {
|
|
1526
1661
|
FAILURE = "FAILURE",
|
|
1527
1662
|
SUCCESS = "SUCCESS"
|
|
1528
1663
|
}
|
|
1664
|
+
/**
|
|
1665
|
+
* @public
|
|
1666
|
+
*/
|
|
1529
1667
|
export interface DeleteAccessRequest {
|
|
1530
1668
|
/**
|
|
1531
1669
|
* <p>A system-assigned unique identifier for a server that has this user assigned.</p>
|
|
@@ -1537,7 +1675,7 @@ export interface DeleteAccessRequest {
|
|
|
1537
1675
|
* resources over the enabled protocols using Transfer Family. If you know the group name,
|
|
1538
1676
|
* you can view the SID values by running the following command using Windows PowerShell.</p>
|
|
1539
1677
|
* <p>
|
|
1540
|
-
* <code>Get-ADGroup -Filter {samAccountName -like "<i>YourGroupName</i>*"} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
1678
|
+
* <code>Get-ADGroup -Filter \{samAccountName -like "<i>YourGroupName</i>*"\} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
1541
1679
|
* </p>
|
|
1542
1680
|
* <p>In that command, replace <i>YourGroupName</i> with the name of your Active Directory group.</p>
|
|
1543
1681
|
* <p>The regular expression used to validate this parameter is a string of characters consisting of uppercase and lowercase alphanumeric characters with no spaces.
|
|
@@ -1545,6 +1683,9 @@ export interface DeleteAccessRequest {
|
|
|
1545
1683
|
*/
|
|
1546
1684
|
ExternalId: string | undefined;
|
|
1547
1685
|
}
|
|
1686
|
+
/**
|
|
1687
|
+
* @public
|
|
1688
|
+
*/
|
|
1548
1689
|
export interface DeleteAgreementRequest {
|
|
1549
1690
|
/**
|
|
1550
1691
|
* <p>A unique identifier for the agreement. This identifier is returned when you create an agreement.</p>
|
|
@@ -1555,18 +1696,27 @@ export interface DeleteAgreementRequest {
|
|
|
1555
1696
|
*/
|
|
1556
1697
|
ServerId: string | undefined;
|
|
1557
1698
|
}
|
|
1699
|
+
/**
|
|
1700
|
+
* @public
|
|
1701
|
+
*/
|
|
1558
1702
|
export interface DeleteCertificateRequest {
|
|
1559
1703
|
/**
|
|
1560
1704
|
* <p>The identifier of the certificate object that you are deleting.</p>
|
|
1561
1705
|
*/
|
|
1562
1706
|
CertificateId: string | undefined;
|
|
1563
1707
|
}
|
|
1708
|
+
/**
|
|
1709
|
+
* @public
|
|
1710
|
+
*/
|
|
1564
1711
|
export interface DeleteConnectorRequest {
|
|
1565
1712
|
/**
|
|
1566
1713
|
* <p>The unique identifier for the connector.</p>
|
|
1567
1714
|
*/
|
|
1568
1715
|
ConnectorId: string | undefined;
|
|
1569
1716
|
}
|
|
1717
|
+
/**
|
|
1718
|
+
* @public
|
|
1719
|
+
*/
|
|
1570
1720
|
export interface DeleteHostKeyRequest {
|
|
1571
1721
|
/**
|
|
1572
1722
|
* <p>The identifier of the server that contains the host key that you are deleting.</p>
|
|
@@ -1577,18 +1727,27 @@ export interface DeleteHostKeyRequest {
|
|
|
1577
1727
|
*/
|
|
1578
1728
|
HostKeyId: string | undefined;
|
|
1579
1729
|
}
|
|
1730
|
+
/**
|
|
1731
|
+
* @public
|
|
1732
|
+
*/
|
|
1580
1733
|
export interface DeleteProfileRequest {
|
|
1581
1734
|
/**
|
|
1582
1735
|
* <p>The identifier of the profile that you are deleting.</p>
|
|
1583
1736
|
*/
|
|
1584
1737
|
ProfileId: string | undefined;
|
|
1585
1738
|
}
|
|
1739
|
+
/**
|
|
1740
|
+
* @public
|
|
1741
|
+
*/
|
|
1586
1742
|
export interface DeleteServerRequest {
|
|
1587
1743
|
/**
|
|
1588
1744
|
* <p>A unique system-assigned identifier for a server instance.</p>
|
|
1589
1745
|
*/
|
|
1590
1746
|
ServerId: string | undefined;
|
|
1591
1747
|
}
|
|
1748
|
+
/**
|
|
1749
|
+
* @public
|
|
1750
|
+
*/
|
|
1592
1751
|
export interface DeleteSshPublicKeyRequest {
|
|
1593
1752
|
/**
|
|
1594
1753
|
* <p>A system-assigned unique identifier for a file transfer protocol-enabled server instance
|
|
@@ -1604,6 +1763,9 @@ export interface DeleteSshPublicKeyRequest {
|
|
|
1604
1763
|
*/
|
|
1605
1764
|
UserName: string | undefined;
|
|
1606
1765
|
}
|
|
1766
|
+
/**
|
|
1767
|
+
* @public
|
|
1768
|
+
*/
|
|
1607
1769
|
export interface DeleteUserRequest {
|
|
1608
1770
|
/**
|
|
1609
1771
|
* <p>A system-assigned unique identifier for a server instance that has the user assigned to
|
|
@@ -1615,12 +1777,18 @@ export interface DeleteUserRequest {
|
|
|
1615
1777
|
*/
|
|
1616
1778
|
UserName: string | undefined;
|
|
1617
1779
|
}
|
|
1780
|
+
/**
|
|
1781
|
+
* @public
|
|
1782
|
+
*/
|
|
1618
1783
|
export interface DeleteWorkflowRequest {
|
|
1619
1784
|
/**
|
|
1620
1785
|
* <p>A unique identifier for the workflow.</p>
|
|
1621
1786
|
*/
|
|
1622
1787
|
WorkflowId: string | undefined;
|
|
1623
1788
|
}
|
|
1789
|
+
/**
|
|
1790
|
+
* @public
|
|
1791
|
+
*/
|
|
1624
1792
|
export interface DescribeAccessRequest {
|
|
1625
1793
|
/**
|
|
1626
1794
|
* <p>A system-assigned unique identifier for a server that has this access assigned.</p>
|
|
@@ -1632,7 +1800,7 @@ export interface DescribeAccessRequest {
|
|
|
1632
1800
|
* resources over the enabled protocols using Transfer Family. If you know the group name,
|
|
1633
1801
|
* you can view the SID values by running the following command using Windows PowerShell.</p>
|
|
1634
1802
|
* <p>
|
|
1635
|
-
* <code>Get-ADGroup -Filter {samAccountName -like "<i>YourGroupName</i>*"} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
1803
|
+
* <code>Get-ADGroup -Filter \{samAccountName -like "<i>YourGroupName</i>*"\} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
1636
1804
|
* </p>
|
|
1637
1805
|
* <p>In that command, replace <i>YourGroupName</i> with the name of your Active Directory group.</p>
|
|
1638
1806
|
* <p>The regular expression used to validate this parameter is a string of characters consisting of uppercase and lowercase alphanumeric characters with no spaces.
|
|
@@ -1641,6 +1809,7 @@ export interface DescribeAccessRequest {
|
|
|
1641
1809
|
ExternalId: string | undefined;
|
|
1642
1810
|
}
|
|
1643
1811
|
/**
|
|
1812
|
+
* @public
|
|
1644
1813
|
* <p>Describes the properties of the access that was specified.</p>
|
|
1645
1814
|
*/
|
|
1646
1815
|
export interface DescribedAccess {
|
|
@@ -1673,8 +1842,8 @@ export interface DescribedAccess {
|
|
|
1673
1842
|
HomeDirectoryType?: HomeDirectoryType | string;
|
|
1674
1843
|
/**
|
|
1675
1844
|
* <p>A session policy for your user so that you can use the same Identity and Access Management (IAM) role across multiple users. This policy scopes down a user's
|
|
1676
|
-
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code
|
|
1677
|
-
* <code
|
|
1845
|
+
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code>$\{Transfer:UserName\}</code>,
|
|
1846
|
+
* <code>$\{Transfer:HomeDirectory\}</code>, and <code>$\{Transfer:HomeBucket\}</code>.</p>
|
|
1678
1847
|
*/
|
|
1679
1848
|
Policy?: string;
|
|
1680
1849
|
/**
|
|
@@ -1698,7 +1867,7 @@ export interface DescribedAccess {
|
|
|
1698
1867
|
* resources over the enabled protocols using Transfer Family. If you know the group name,
|
|
1699
1868
|
* you can view the SID values by running the following command using Windows PowerShell.</p>
|
|
1700
1869
|
* <p>
|
|
1701
|
-
* <code>Get-ADGroup -Filter {samAccountName -like "<i>YourGroupName</i>*"} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
1870
|
+
* <code>Get-ADGroup -Filter \{samAccountName -like "<i>YourGroupName</i>*"\} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
1702
1871
|
* </p>
|
|
1703
1872
|
* <p>In that command, replace <i>YourGroupName</i> with the name of your Active Directory group.</p>
|
|
1704
1873
|
* <p>The regular expression used to validate this parameter is a string of characters consisting of uppercase and lowercase alphanumeric characters with no spaces.
|
|
@@ -1706,6 +1875,9 @@ export interface DescribedAccess {
|
|
|
1706
1875
|
*/
|
|
1707
1876
|
ExternalId?: string;
|
|
1708
1877
|
}
|
|
1878
|
+
/**
|
|
1879
|
+
* @public
|
|
1880
|
+
*/
|
|
1709
1881
|
export interface DescribeAccessResponse {
|
|
1710
1882
|
/**
|
|
1711
1883
|
* <p>A system-assigned unique identifier for a server that has this access assigned.</p>
|
|
@@ -1716,6 +1888,9 @@ export interface DescribeAccessResponse {
|
|
|
1716
1888
|
*/
|
|
1717
1889
|
Access: DescribedAccess | undefined;
|
|
1718
1890
|
}
|
|
1891
|
+
/**
|
|
1892
|
+
* @public
|
|
1893
|
+
*/
|
|
1719
1894
|
export interface DescribeAgreementRequest {
|
|
1720
1895
|
/**
|
|
1721
1896
|
* <p>A unique identifier for the agreement. This identifier is returned when you create an agreement.</p>
|
|
@@ -1727,6 +1902,7 @@ export interface DescribeAgreementRequest {
|
|
|
1727
1902
|
ServerId: string | undefined;
|
|
1728
1903
|
}
|
|
1729
1904
|
/**
|
|
1905
|
+
* @public
|
|
1730
1906
|
* <p>Describes the properties of an agreement.</p>
|
|
1731
1907
|
*/
|
|
1732
1908
|
export interface DescribedAgreement {
|
|
@@ -1783,6 +1959,9 @@ export interface DescribedAgreement {
|
|
|
1783
1959
|
*/
|
|
1784
1960
|
Tags?: Tag[];
|
|
1785
1961
|
}
|
|
1962
|
+
/**
|
|
1963
|
+
* @public
|
|
1964
|
+
*/
|
|
1786
1965
|
export interface DescribeAgreementResponse {
|
|
1787
1966
|
/**
|
|
1788
1967
|
* <p>The details for the specified agreement, returned as a <code>DescribedAgreement</code>
|
|
@@ -1790,6 +1969,9 @@ export interface DescribeAgreementResponse {
|
|
|
1790
1969
|
*/
|
|
1791
1970
|
Agreement: DescribedAgreement | undefined;
|
|
1792
1971
|
}
|
|
1972
|
+
/**
|
|
1973
|
+
* @public
|
|
1974
|
+
*/
|
|
1793
1975
|
export interface DescribeCertificateRequest {
|
|
1794
1976
|
/**
|
|
1795
1977
|
* <p>An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.</p>
|
|
@@ -1797,6 +1979,7 @@ export interface DescribeCertificateRequest {
|
|
|
1797
1979
|
CertificateId: string | undefined;
|
|
1798
1980
|
}
|
|
1799
1981
|
/**
|
|
1982
|
+
* @public
|
|
1800
1983
|
* <p>Describes the properties of a certificate.</p>
|
|
1801
1984
|
*/
|
|
1802
1985
|
export interface DescribedCertificate {
|
|
@@ -1860,12 +2043,18 @@ export interface DescribedCertificate {
|
|
|
1860
2043
|
*/
|
|
1861
2044
|
Tags?: Tag[];
|
|
1862
2045
|
}
|
|
2046
|
+
/**
|
|
2047
|
+
* @public
|
|
2048
|
+
*/
|
|
1863
2049
|
export interface DescribeCertificateResponse {
|
|
1864
2050
|
/**
|
|
1865
2051
|
* <p>The details for the specified certificate, returned as an object.</p>
|
|
1866
2052
|
*/
|
|
1867
2053
|
Certificate: DescribedCertificate | undefined;
|
|
1868
2054
|
}
|
|
2055
|
+
/**
|
|
2056
|
+
* @public
|
|
2057
|
+
*/
|
|
1869
2058
|
export interface DescribeConnectorRequest {
|
|
1870
2059
|
/**
|
|
1871
2060
|
* <p>The unique identifier for the connector.</p>
|
|
@@ -1873,6 +2062,7 @@ export interface DescribeConnectorRequest {
|
|
|
1873
2062
|
ConnectorId: string | undefined;
|
|
1874
2063
|
}
|
|
1875
2064
|
/**
|
|
2065
|
+
* @public
|
|
1876
2066
|
* <p>Describes the parameters for the connector, as identified by the
|
|
1877
2067
|
* <code>ConnectorId</code>.</p>
|
|
1878
2068
|
*/
|
|
@@ -1917,6 +2107,9 @@ export interface DescribedConnector {
|
|
|
1917
2107
|
*/
|
|
1918
2108
|
Tags?: Tag[];
|
|
1919
2109
|
}
|
|
2110
|
+
/**
|
|
2111
|
+
* @public
|
|
2112
|
+
*/
|
|
1920
2113
|
export interface DescribeConnectorResponse {
|
|
1921
2114
|
/**
|
|
1922
2115
|
* <p>The structure that contains the details of the connector.</p>
|
|
@@ -1924,6 +2117,7 @@ export interface DescribeConnectorResponse {
|
|
|
1924
2117
|
Connector: DescribedConnector | undefined;
|
|
1925
2118
|
}
|
|
1926
2119
|
/**
|
|
2120
|
+
* @public
|
|
1927
2121
|
* <p>Specifies the details for the file location for the file that's being used in the workflow. Only applicable if you are using S3 storage.</p>
|
|
1928
2122
|
*/
|
|
1929
2123
|
export interface S3FileLocation {
|
|
@@ -1945,6 +2139,7 @@ export interface S3FileLocation {
|
|
|
1945
2139
|
Etag?: string;
|
|
1946
2140
|
}
|
|
1947
2141
|
/**
|
|
2142
|
+
* @public
|
|
1948
2143
|
* <p>Specifies the Amazon S3 or EFS file details to be used in the step.</p>
|
|
1949
2144
|
*/
|
|
1950
2145
|
export interface FileLocation {
|
|
@@ -1959,6 +2154,7 @@ export interface FileLocation {
|
|
|
1959
2154
|
EfsFileLocation?: EfsFileLocation;
|
|
1960
2155
|
}
|
|
1961
2156
|
/**
|
|
2157
|
+
* @public
|
|
1962
2158
|
* <p>Consists of the logging role and the log group name.</p>
|
|
1963
2159
|
*/
|
|
1964
2160
|
export interface LoggingConfiguration {
|
|
@@ -1973,6 +2169,9 @@ export interface LoggingConfiguration {
|
|
|
1973
2169
|
*/
|
|
1974
2170
|
LogGroupName?: string;
|
|
1975
2171
|
}
|
|
2172
|
+
/**
|
|
2173
|
+
* @public
|
|
2174
|
+
*/
|
|
1976
2175
|
export declare enum ExecutionErrorType {
|
|
1977
2176
|
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
1978
2177
|
BAD_REQUEST = "BAD_REQUEST",
|
|
@@ -1984,6 +2183,7 @@ export declare enum ExecutionErrorType {
|
|
|
1984
2183
|
TIMEOUT = "TIMEOUT"
|
|
1985
2184
|
}
|
|
1986
2185
|
/**
|
|
2186
|
+
* @public
|
|
1987
2187
|
* <p>Specifies the error message and type, for an error that occurs during the execution of the workflow.</p>
|
|
1988
2188
|
*/
|
|
1989
2189
|
export interface ExecutionError {
|
|
@@ -2039,6 +2239,7 @@ export interface ExecutionError {
|
|
|
2039
2239
|
Message: string | undefined;
|
|
2040
2240
|
}
|
|
2041
2241
|
/**
|
|
2242
|
+
* @public
|
|
2042
2243
|
* <p>Specifies the following details for the step: error (if any), outputs (if any), and the step type.</p>
|
|
2043
2244
|
*/
|
|
2044
2245
|
export interface ExecutionStepResult {
|
|
@@ -2089,6 +2290,7 @@ export interface ExecutionStepResult {
|
|
|
2089
2290
|
Error?: ExecutionError;
|
|
2090
2291
|
}
|
|
2091
2292
|
/**
|
|
2293
|
+
* @public
|
|
2092
2294
|
* <p>Specifies the steps in the workflow, as well as the steps to execute in case of any errors during workflow execution.</p>
|
|
2093
2295
|
*/
|
|
2094
2296
|
export interface ExecutionResults {
|
|
@@ -2102,6 +2304,7 @@ export interface ExecutionResults {
|
|
|
2102
2304
|
OnExceptionSteps?: ExecutionStepResult[];
|
|
2103
2305
|
}
|
|
2104
2306
|
/**
|
|
2307
|
+
* @public
|
|
2105
2308
|
* <p>Specifies the user name, server ID, and session ID for a workflow.</p>
|
|
2106
2309
|
*/
|
|
2107
2310
|
export interface UserDetails {
|
|
@@ -2119,6 +2322,7 @@ export interface UserDetails {
|
|
|
2119
2322
|
SessionId?: string;
|
|
2120
2323
|
}
|
|
2121
2324
|
/**
|
|
2325
|
+
* @public
|
|
2122
2326
|
* <p>A container object for the session details that are associated with a workflow.</p>
|
|
2123
2327
|
*/
|
|
2124
2328
|
export interface ServiceMetadata {
|
|
@@ -2127,6 +2331,9 @@ export interface ServiceMetadata {
|
|
|
2127
2331
|
*/
|
|
2128
2332
|
UserDetails: UserDetails | undefined;
|
|
2129
2333
|
}
|
|
2334
|
+
/**
|
|
2335
|
+
* @public
|
|
2336
|
+
*/
|
|
2130
2337
|
export declare enum ExecutionStatus {
|
|
2131
2338
|
COMPLETED = "COMPLETED",
|
|
2132
2339
|
EXCEPTION = "EXCEPTION",
|
|
@@ -2134,6 +2341,7 @@ export declare enum ExecutionStatus {
|
|
|
2134
2341
|
IN_PROGRESS = "IN_PROGRESS"
|
|
2135
2342
|
}
|
|
2136
2343
|
/**
|
|
2344
|
+
* @public
|
|
2137
2345
|
* <p>The details for an execution object.</p>
|
|
2138
2346
|
*/
|
|
2139
2347
|
export interface DescribedExecution {
|
|
@@ -2179,6 +2387,7 @@ export interface DescribedExecution {
|
|
|
2179
2387
|
Results?: ExecutionResults;
|
|
2180
2388
|
}
|
|
2181
2389
|
/**
|
|
2390
|
+
* @public
|
|
2182
2391
|
* <p>The details for a server host key.</p>
|
|
2183
2392
|
*/
|
|
2184
2393
|
export interface DescribedHostKey {
|
|
@@ -2240,6 +2449,7 @@ export interface DescribedHostKey {
|
|
|
2240
2449
|
Tags?: Tag[];
|
|
2241
2450
|
}
|
|
2242
2451
|
/**
|
|
2452
|
+
* @public
|
|
2243
2453
|
* <p>The details for a local or partner AS2 profile. </p>
|
|
2244
2454
|
*/
|
|
2245
2455
|
export interface DescribedProfile {
|
|
@@ -2273,6 +2483,7 @@ export interface DescribedProfile {
|
|
|
2273
2483
|
Tags?: Tag[];
|
|
2274
2484
|
}
|
|
2275
2485
|
/**
|
|
2486
|
+
* @public
|
|
2276
2487
|
* <p>Describes the properties of a security policy that was specified. For more information
|
|
2277
2488
|
* about security policies, see <a href="https://docs.aws.amazon.com/transfer/latest/userguide/security-policies.html">Working with security
|
|
2278
2489
|
* policies</a>.</p>
|
|
@@ -2308,6 +2519,9 @@ export interface DescribedSecurityPolicy {
|
|
|
2308
2519
|
*/
|
|
2309
2520
|
TlsCiphers?: string[];
|
|
2310
2521
|
}
|
|
2522
|
+
/**
|
|
2523
|
+
* @public
|
|
2524
|
+
*/
|
|
2311
2525
|
export declare enum State {
|
|
2312
2526
|
OFFLINE = "OFFLINE",
|
|
2313
2527
|
ONLINE = "ONLINE",
|
|
@@ -2317,6 +2531,7 @@ export declare enum State {
|
|
|
2317
2531
|
STOP_FAILED = "STOP_FAILED"
|
|
2318
2532
|
}
|
|
2319
2533
|
/**
|
|
2534
|
+
* @public
|
|
2320
2535
|
* <p>Describes the properties of a file transfer protocol-enabled server that was
|
|
2321
2536
|
* specified.</p>
|
|
2322
2537
|
*/
|
|
@@ -2516,6 +2731,7 @@ export interface DescribedServer {
|
|
|
2516
2731
|
WorkflowDetails?: WorkflowDetails;
|
|
2517
2732
|
}
|
|
2518
2733
|
/**
|
|
2734
|
+
* @public
|
|
2519
2735
|
* <p>Provides information about the public Secure Shell (SSH) key that is associated with a
|
|
2520
2736
|
* user account for the specific file transfer protocol-enabled server (as identified by
|
|
2521
2737
|
* <code>ServerId</code>). The information returned includes the date the key was imported, the
|
|
@@ -2540,6 +2756,7 @@ export interface SshPublicKey {
|
|
|
2540
2756
|
SshPublicKeyId: string | undefined;
|
|
2541
2757
|
}
|
|
2542
2758
|
/**
|
|
2759
|
+
* @public
|
|
2543
2760
|
* <p>Describes the properties of a user that was specified.</p>
|
|
2544
2761
|
*/
|
|
2545
2762
|
export interface DescribedUser {
|
|
@@ -2577,8 +2794,8 @@ export interface DescribedUser {
|
|
|
2577
2794
|
HomeDirectoryType?: HomeDirectoryType | string;
|
|
2578
2795
|
/**
|
|
2579
2796
|
* <p>A session policy for your user so that you can use the same Identity and Access Management (IAM) role across multiple users. This policy scopes down a user's
|
|
2580
|
-
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code
|
|
2581
|
-
* <code
|
|
2797
|
+
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code>$\{Transfer:UserName\}</code>,
|
|
2798
|
+
* <code>$\{Transfer:HomeDirectory\}</code>, and <code>$\{Transfer:HomeBucket\}</code>.</p>
|
|
2582
2799
|
*/
|
|
2583
2800
|
Policy?: string;
|
|
2584
2801
|
/**
|
|
@@ -2615,6 +2832,7 @@ export interface DescribedUser {
|
|
|
2615
2832
|
UserName?: string;
|
|
2616
2833
|
}
|
|
2617
2834
|
/**
|
|
2835
|
+
* @public
|
|
2618
2836
|
* <p>Describes the properties of the specified workflow</p>
|
|
2619
2837
|
*/
|
|
2620
2838
|
export interface DescribedWorkflow {
|
|
@@ -2643,6 +2861,9 @@ export interface DescribedWorkflow {
|
|
|
2643
2861
|
*/
|
|
2644
2862
|
Tags?: Tag[];
|
|
2645
2863
|
}
|
|
2864
|
+
/**
|
|
2865
|
+
* @public
|
|
2866
|
+
*/
|
|
2646
2867
|
export interface DescribeExecutionRequest {
|
|
2647
2868
|
/**
|
|
2648
2869
|
* <p>A unique identifier for the execution of a workflow.</p>
|
|
@@ -2653,6 +2874,9 @@ export interface DescribeExecutionRequest {
|
|
|
2653
2874
|
*/
|
|
2654
2875
|
WorkflowId: string | undefined;
|
|
2655
2876
|
}
|
|
2877
|
+
/**
|
|
2878
|
+
* @public
|
|
2879
|
+
*/
|
|
2656
2880
|
export interface DescribeExecutionResponse {
|
|
2657
2881
|
/**
|
|
2658
2882
|
* <p>A unique identifier for the workflow.</p>
|
|
@@ -2663,6 +2887,9 @@ export interface DescribeExecutionResponse {
|
|
|
2663
2887
|
*/
|
|
2664
2888
|
Execution: DescribedExecution | undefined;
|
|
2665
2889
|
}
|
|
2890
|
+
/**
|
|
2891
|
+
* @public
|
|
2892
|
+
*/
|
|
2666
2893
|
export interface DescribeHostKeyRequest {
|
|
2667
2894
|
/**
|
|
2668
2895
|
* <p>The identifier of the server that contains the host key that you want described.</p>
|
|
@@ -2673,42 +2900,63 @@ export interface DescribeHostKeyRequest {
|
|
|
2673
2900
|
*/
|
|
2674
2901
|
HostKeyId: string | undefined;
|
|
2675
2902
|
}
|
|
2903
|
+
/**
|
|
2904
|
+
* @public
|
|
2905
|
+
*/
|
|
2676
2906
|
export interface DescribeHostKeyResponse {
|
|
2677
2907
|
/**
|
|
2678
2908
|
* <p>Returns the details for the specified host key.</p>
|
|
2679
2909
|
*/
|
|
2680
2910
|
HostKey: DescribedHostKey | undefined;
|
|
2681
2911
|
}
|
|
2912
|
+
/**
|
|
2913
|
+
* @public
|
|
2914
|
+
*/
|
|
2682
2915
|
export interface DescribeProfileRequest {
|
|
2683
2916
|
/**
|
|
2684
2917
|
* <p>The identifier of the profile that you want described.</p>
|
|
2685
2918
|
*/
|
|
2686
2919
|
ProfileId: string | undefined;
|
|
2687
2920
|
}
|
|
2921
|
+
/**
|
|
2922
|
+
* @public
|
|
2923
|
+
*/
|
|
2688
2924
|
export interface DescribeProfileResponse {
|
|
2689
2925
|
/**
|
|
2690
2926
|
* <p>The details of the specified profile, returned as an object.</p>
|
|
2691
2927
|
*/
|
|
2692
2928
|
Profile: DescribedProfile | undefined;
|
|
2693
2929
|
}
|
|
2930
|
+
/**
|
|
2931
|
+
* @public
|
|
2932
|
+
*/
|
|
2694
2933
|
export interface DescribeSecurityPolicyRequest {
|
|
2695
2934
|
/**
|
|
2696
2935
|
* <p>Specifies the name of the security policy that is attached to the server.</p>
|
|
2697
2936
|
*/
|
|
2698
2937
|
SecurityPolicyName: string | undefined;
|
|
2699
2938
|
}
|
|
2939
|
+
/**
|
|
2940
|
+
* @public
|
|
2941
|
+
*/
|
|
2700
2942
|
export interface DescribeSecurityPolicyResponse {
|
|
2701
2943
|
/**
|
|
2702
2944
|
* <p>An array containing the properties of the security policy.</p>
|
|
2703
2945
|
*/
|
|
2704
2946
|
SecurityPolicy: DescribedSecurityPolicy | undefined;
|
|
2705
2947
|
}
|
|
2948
|
+
/**
|
|
2949
|
+
* @public
|
|
2950
|
+
*/
|
|
2706
2951
|
export interface DescribeServerRequest {
|
|
2707
2952
|
/**
|
|
2708
2953
|
* <p>A system-assigned unique identifier for a server.</p>
|
|
2709
2954
|
*/
|
|
2710
2955
|
ServerId: string | undefined;
|
|
2711
2956
|
}
|
|
2957
|
+
/**
|
|
2958
|
+
* @public
|
|
2959
|
+
*/
|
|
2712
2960
|
export interface DescribeServerResponse {
|
|
2713
2961
|
/**
|
|
2714
2962
|
* <p>An array containing the properties of a server with the <code>ServerID</code> you
|
|
@@ -2716,6 +2964,9 @@ export interface DescribeServerResponse {
|
|
|
2716
2964
|
*/
|
|
2717
2965
|
Server: DescribedServer | undefined;
|
|
2718
2966
|
}
|
|
2967
|
+
/**
|
|
2968
|
+
* @public
|
|
2969
|
+
*/
|
|
2719
2970
|
export interface DescribeUserRequest {
|
|
2720
2971
|
/**
|
|
2721
2972
|
* <p>A system-assigned unique identifier for a server that has this user assigned.</p>
|
|
@@ -2727,6 +2978,9 @@ export interface DescribeUserRequest {
|
|
|
2727
2978
|
*/
|
|
2728
2979
|
UserName: string | undefined;
|
|
2729
2980
|
}
|
|
2981
|
+
/**
|
|
2982
|
+
* @public
|
|
2983
|
+
*/
|
|
2730
2984
|
export interface DescribeUserResponse {
|
|
2731
2985
|
/**
|
|
2732
2986
|
* <p>A system-assigned unique identifier for a server that has this user assigned.</p>
|
|
@@ -2738,18 +2992,27 @@ export interface DescribeUserResponse {
|
|
|
2738
2992
|
*/
|
|
2739
2993
|
User: DescribedUser | undefined;
|
|
2740
2994
|
}
|
|
2995
|
+
/**
|
|
2996
|
+
* @public
|
|
2997
|
+
*/
|
|
2741
2998
|
export interface DescribeWorkflowRequest {
|
|
2742
2999
|
/**
|
|
2743
3000
|
* <p>A unique identifier for the workflow.</p>
|
|
2744
3001
|
*/
|
|
2745
3002
|
WorkflowId: string | undefined;
|
|
2746
3003
|
}
|
|
3004
|
+
/**
|
|
3005
|
+
* @public
|
|
3006
|
+
*/
|
|
2747
3007
|
export interface DescribeWorkflowResponse {
|
|
2748
3008
|
/**
|
|
2749
3009
|
* <p>The structure that contains the details of the workflow.</p>
|
|
2750
3010
|
*/
|
|
2751
3011
|
Workflow: DescribedWorkflow | undefined;
|
|
2752
3012
|
}
|
|
3013
|
+
/**
|
|
3014
|
+
* @public
|
|
3015
|
+
*/
|
|
2753
3016
|
export interface ImportCertificateRequest {
|
|
2754
3017
|
/**
|
|
2755
3018
|
* <p>Specifies whether this certificate is used for signing or encryption.</p>
|
|
@@ -2802,12 +3065,18 @@ export interface ImportCertificateRequest {
|
|
|
2802
3065
|
*/
|
|
2803
3066
|
Tags?: Tag[];
|
|
2804
3067
|
}
|
|
3068
|
+
/**
|
|
3069
|
+
* @public
|
|
3070
|
+
*/
|
|
2805
3071
|
export interface ImportCertificateResponse {
|
|
2806
3072
|
/**
|
|
2807
3073
|
* <p>An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.</p>
|
|
2808
3074
|
*/
|
|
2809
3075
|
CertificateId: string | undefined;
|
|
2810
3076
|
}
|
|
3077
|
+
/**
|
|
3078
|
+
* @public
|
|
3079
|
+
*/
|
|
2811
3080
|
export interface ImportHostKeyRequest {
|
|
2812
3081
|
/**
|
|
2813
3082
|
* <p>The identifier of the server that contains the host key that you are importing.</p>
|
|
@@ -2827,6 +3096,9 @@ export interface ImportHostKeyRequest {
|
|
|
2827
3096
|
*/
|
|
2828
3097
|
Tags?: Tag[];
|
|
2829
3098
|
}
|
|
3099
|
+
/**
|
|
3100
|
+
* @public
|
|
3101
|
+
*/
|
|
2830
3102
|
export interface ImportHostKeyResponse {
|
|
2831
3103
|
/**
|
|
2832
3104
|
* <p>Returns the server identifier that contains the imported key.</p>
|
|
@@ -2837,6 +3109,9 @@ export interface ImportHostKeyResponse {
|
|
|
2837
3109
|
*/
|
|
2838
3110
|
HostKeyId: string | undefined;
|
|
2839
3111
|
}
|
|
3112
|
+
/**
|
|
3113
|
+
* @public
|
|
3114
|
+
*/
|
|
2840
3115
|
export interface ImportSshPublicKeyRequest {
|
|
2841
3116
|
/**
|
|
2842
3117
|
* <p>A system-assigned unique identifier for a server.</p>
|
|
@@ -2853,6 +3128,7 @@ export interface ImportSshPublicKeyRequest {
|
|
|
2853
3128
|
UserName: string | undefined;
|
|
2854
3129
|
}
|
|
2855
3130
|
/**
|
|
3131
|
+
* @public
|
|
2856
3132
|
* <p>Identifies the user, the server they belong to, and the identifier of the SSH public key
|
|
2857
3133
|
* associated with that user. A user can have more than one key on each server that they are
|
|
2858
3134
|
* associated with.</p>
|
|
@@ -2872,6 +3148,7 @@ export interface ImportSshPublicKeyResponse {
|
|
|
2872
3148
|
UserName: string | undefined;
|
|
2873
3149
|
}
|
|
2874
3150
|
/**
|
|
3151
|
+
* @public
|
|
2875
3152
|
* <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
|
|
2876
3153
|
*/
|
|
2877
3154
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
@@ -2883,6 +3160,9 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
2883
3160
|
*/
|
|
2884
3161
|
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2885
3162
|
}
|
|
3163
|
+
/**
|
|
3164
|
+
* @public
|
|
3165
|
+
*/
|
|
2886
3166
|
export interface ListAccessesRequest {
|
|
2887
3167
|
/**
|
|
2888
3168
|
* <p>Specifies the maximum number of access SIDs to return.</p>
|
|
@@ -2901,6 +3181,7 @@ export interface ListAccessesRequest {
|
|
|
2901
3181
|
ServerId: string | undefined;
|
|
2902
3182
|
}
|
|
2903
3183
|
/**
|
|
3184
|
+
* @public
|
|
2904
3185
|
* <p>Lists the properties for one or more specified associated accesses.</p>
|
|
2905
3186
|
*/
|
|
2906
3187
|
export interface ListedAccess {
|
|
@@ -2929,7 +3210,7 @@ export interface ListedAccess {
|
|
|
2929
3210
|
* resources over the enabled protocols using Transfer Family. If you know the group name,
|
|
2930
3211
|
* you can view the SID values by running the following command using Windows PowerShell.</p>
|
|
2931
3212
|
* <p>
|
|
2932
|
-
* <code>Get-ADGroup -Filter {samAccountName -like "<i>YourGroupName</i>*"} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
3213
|
+
* <code>Get-ADGroup -Filter \{samAccountName -like "<i>YourGroupName</i>*"\} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
2933
3214
|
* </p>
|
|
2934
3215
|
* <p>In that command, replace <i>YourGroupName</i> with the name of your Active Directory group.</p>
|
|
2935
3216
|
* <p>The regular expression used to validate this parameter is a string of characters consisting of uppercase and lowercase alphanumeric characters with no spaces.
|
|
@@ -2937,6 +3218,9 @@ export interface ListedAccess {
|
|
|
2937
3218
|
*/
|
|
2938
3219
|
ExternalId?: string;
|
|
2939
3220
|
}
|
|
3221
|
+
/**
|
|
3222
|
+
* @public
|
|
3223
|
+
*/
|
|
2940
3224
|
export interface ListAccessesResponse {
|
|
2941
3225
|
/**
|
|
2942
3226
|
* <p>When you can get additional results from the <code>ListAccesses</code> call, a
|
|
@@ -2955,6 +3239,9 @@ export interface ListAccessesResponse {
|
|
|
2955
3239
|
*/
|
|
2956
3240
|
Accesses: ListedAccess[] | undefined;
|
|
2957
3241
|
}
|
|
3242
|
+
/**
|
|
3243
|
+
* @public
|
|
3244
|
+
*/
|
|
2958
3245
|
export interface ListAgreementsRequest {
|
|
2959
3246
|
/**
|
|
2960
3247
|
* <p>The maximum number of agreements to return.</p>
|
|
@@ -2973,6 +3260,7 @@ export interface ListAgreementsRequest {
|
|
|
2973
3260
|
ServerId: string | undefined;
|
|
2974
3261
|
}
|
|
2975
3262
|
/**
|
|
3263
|
+
* @public
|
|
2976
3264
|
* <p>Describes the properties of an agreement.</p>
|
|
2977
3265
|
*/
|
|
2978
3266
|
export interface ListedAgreement {
|
|
@@ -3006,6 +3294,9 @@ export interface ListedAgreement {
|
|
|
3006
3294
|
*/
|
|
3007
3295
|
PartnerProfileId?: string;
|
|
3008
3296
|
}
|
|
3297
|
+
/**
|
|
3298
|
+
* @public
|
|
3299
|
+
*/
|
|
3009
3300
|
export interface ListAgreementsResponse {
|
|
3010
3301
|
/**
|
|
3011
3302
|
* <p>Returns a token that you can use to call <code>ListAgreements</code> again and receive
|
|
@@ -3017,6 +3308,9 @@ export interface ListAgreementsResponse {
|
|
|
3017
3308
|
*/
|
|
3018
3309
|
Agreements: ListedAgreement[] | undefined;
|
|
3019
3310
|
}
|
|
3311
|
+
/**
|
|
3312
|
+
* @public
|
|
3313
|
+
*/
|
|
3020
3314
|
export interface ListCertificatesRequest {
|
|
3021
3315
|
/**
|
|
3022
3316
|
* <p>The maximum number of certificates to return.</p>
|
|
@@ -3031,6 +3325,7 @@ export interface ListCertificatesRequest {
|
|
|
3031
3325
|
NextToken?: string;
|
|
3032
3326
|
}
|
|
3033
3327
|
/**
|
|
3328
|
+
* @public
|
|
3034
3329
|
* <p>Describes the properties of a certificate.</p>
|
|
3035
3330
|
*/
|
|
3036
3331
|
export interface ListedCertificate {
|
|
@@ -3071,6 +3366,9 @@ export interface ListedCertificate {
|
|
|
3071
3366
|
*/
|
|
3072
3367
|
Description?: string;
|
|
3073
3368
|
}
|
|
3369
|
+
/**
|
|
3370
|
+
* @public
|
|
3371
|
+
*/
|
|
3074
3372
|
export interface ListCertificatesResponse {
|
|
3075
3373
|
/**
|
|
3076
3374
|
* <p>Returns the next token, which you can use to list the next certificate.</p>
|
|
@@ -3082,6 +3380,9 @@ export interface ListCertificatesResponse {
|
|
|
3082
3380
|
*/
|
|
3083
3381
|
Certificates: ListedCertificate[] | undefined;
|
|
3084
3382
|
}
|
|
3383
|
+
/**
|
|
3384
|
+
* @public
|
|
3385
|
+
*/
|
|
3085
3386
|
export interface ListConnectorsRequest {
|
|
3086
3387
|
/**
|
|
3087
3388
|
* <p>The maximum number of connectors to return.</p>
|
|
@@ -3096,6 +3397,7 @@ export interface ListConnectorsRequest {
|
|
|
3096
3397
|
NextToken?: string;
|
|
3097
3398
|
}
|
|
3098
3399
|
/**
|
|
3400
|
+
* @public
|
|
3099
3401
|
* <p>Returns details of the connector that is specified.</p>
|
|
3100
3402
|
*/
|
|
3101
3403
|
export interface ListedConnector {
|
|
@@ -3112,6 +3414,9 @@ export interface ListedConnector {
|
|
|
3112
3414
|
*/
|
|
3113
3415
|
Url?: string;
|
|
3114
3416
|
}
|
|
3417
|
+
/**
|
|
3418
|
+
* @public
|
|
3419
|
+
*/
|
|
3115
3420
|
export interface ListConnectorsResponse {
|
|
3116
3421
|
/**
|
|
3117
3422
|
* <p>Returns a token that you can use to call <code>ListConnectors</code> again and receive
|
|
@@ -3124,6 +3429,7 @@ export interface ListConnectorsResponse {
|
|
|
3124
3429
|
Connectors: ListedConnector[] | undefined;
|
|
3125
3430
|
}
|
|
3126
3431
|
/**
|
|
3432
|
+
* @public
|
|
3127
3433
|
* <p>Returns properties of the execution that is specified.</p>
|
|
3128
3434
|
*/
|
|
3129
3435
|
export interface ListedExecution {
|
|
@@ -3147,6 +3453,7 @@ export interface ListedExecution {
|
|
|
3147
3453
|
Status?: ExecutionStatus | string;
|
|
3148
3454
|
}
|
|
3149
3455
|
/**
|
|
3456
|
+
* @public
|
|
3150
3457
|
* <p>Returns properties of the host key that's specified.</p>
|
|
3151
3458
|
*/
|
|
3152
3459
|
export interface ListedHostKey {
|
|
@@ -3204,6 +3511,7 @@ export interface ListedHostKey {
|
|
|
3204
3511
|
DateImported?: Date;
|
|
3205
3512
|
}
|
|
3206
3513
|
/**
|
|
3514
|
+
* @public
|
|
3207
3515
|
* <p>Returns the properties of the profile that was specified.</p>
|
|
3208
3516
|
*/
|
|
3209
3517
|
export interface ListedProfile {
|
|
@@ -3229,6 +3537,7 @@ export interface ListedProfile {
|
|
|
3229
3537
|
ProfileType?: ProfileType | string;
|
|
3230
3538
|
}
|
|
3231
3539
|
/**
|
|
3540
|
+
* @public
|
|
3232
3541
|
* <p>Returns properties of a file transfer protocol-enabled server that was specified.</p>
|
|
3233
3542
|
*/
|
|
3234
3543
|
export interface ListedServer {
|
|
@@ -3289,6 +3598,7 @@ export interface ListedServer {
|
|
|
3289
3598
|
UserCount?: number;
|
|
3290
3599
|
}
|
|
3291
3600
|
/**
|
|
3601
|
+
* @public
|
|
3292
3602
|
* <p>Returns properties of the user that you specify.</p>
|
|
3293
3603
|
*/
|
|
3294
3604
|
export interface ListedUser {
|
|
@@ -3333,6 +3643,7 @@ export interface ListedUser {
|
|
|
3333
3643
|
UserName?: string;
|
|
3334
3644
|
}
|
|
3335
3645
|
/**
|
|
3646
|
+
* @public
|
|
3336
3647
|
* <p>Contains the identifier, text description, and Amazon Resource Name (ARN) for the
|
|
3337
3648
|
* workflow.</p>
|
|
3338
3649
|
*/
|
|
@@ -3350,6 +3661,9 @@ export interface ListedWorkflow {
|
|
|
3350
3661
|
*/
|
|
3351
3662
|
Arn?: string;
|
|
3352
3663
|
}
|
|
3664
|
+
/**
|
|
3665
|
+
* @public
|
|
3666
|
+
*/
|
|
3353
3667
|
export interface ListExecutionsRequest {
|
|
3354
3668
|
/**
|
|
3355
3669
|
* <p>Specifies the maximum number of executions to return.</p>
|
|
@@ -3385,6 +3699,9 @@ export interface ListExecutionsRequest {
|
|
|
3385
3699
|
*/
|
|
3386
3700
|
WorkflowId: string | undefined;
|
|
3387
3701
|
}
|
|
3702
|
+
/**
|
|
3703
|
+
* @public
|
|
3704
|
+
*/
|
|
3388
3705
|
export interface ListExecutionsResponse {
|
|
3389
3706
|
/**
|
|
3390
3707
|
* <p>
|
|
@@ -3424,6 +3741,9 @@ export interface ListExecutionsResponse {
|
|
|
3424
3741
|
*/
|
|
3425
3742
|
Executions: ListedExecution[] | undefined;
|
|
3426
3743
|
}
|
|
3744
|
+
/**
|
|
3745
|
+
* @public
|
|
3746
|
+
*/
|
|
3427
3747
|
export interface ListHostKeysRequest {
|
|
3428
3748
|
/**
|
|
3429
3749
|
* <p>The maximum number of host keys to return.</p>
|
|
@@ -3440,6 +3760,9 @@ export interface ListHostKeysRequest {
|
|
|
3440
3760
|
*/
|
|
3441
3761
|
ServerId: string | undefined;
|
|
3442
3762
|
}
|
|
3763
|
+
/**
|
|
3764
|
+
* @public
|
|
3765
|
+
*/
|
|
3443
3766
|
export interface ListHostKeysResponse {
|
|
3444
3767
|
/**
|
|
3445
3768
|
* <p>Returns a token that you can use to call <code>ListHostKeys</code> again and receive
|
|
@@ -3455,6 +3778,9 @@ export interface ListHostKeysResponse {
|
|
|
3455
3778
|
*/
|
|
3456
3779
|
HostKeys: ListedHostKey[] | undefined;
|
|
3457
3780
|
}
|
|
3781
|
+
/**
|
|
3782
|
+
* @public
|
|
3783
|
+
*/
|
|
3458
3784
|
export interface ListProfilesRequest {
|
|
3459
3785
|
/**
|
|
3460
3786
|
* <p>The maximum number of profiles to return.</p>
|
|
@@ -3472,6 +3798,9 @@ export interface ListProfilesRequest {
|
|
|
3472
3798
|
*/
|
|
3473
3799
|
ProfileType?: ProfileType | string;
|
|
3474
3800
|
}
|
|
3801
|
+
/**
|
|
3802
|
+
* @public
|
|
3803
|
+
*/
|
|
3475
3804
|
export interface ListProfilesResponse {
|
|
3476
3805
|
/**
|
|
3477
3806
|
* <p>Returns a token that you can use to call <code>ListProfiles</code> again and receive
|
|
@@ -3483,6 +3812,9 @@ export interface ListProfilesResponse {
|
|
|
3483
3812
|
*/
|
|
3484
3813
|
Profiles: ListedProfile[] | undefined;
|
|
3485
3814
|
}
|
|
3815
|
+
/**
|
|
3816
|
+
* @public
|
|
3817
|
+
*/
|
|
3486
3818
|
export interface ListSecurityPoliciesRequest {
|
|
3487
3819
|
/**
|
|
3488
3820
|
* <p>Specifies the number of security policies to return as a response to the
|
|
@@ -3497,6 +3829,9 @@ export interface ListSecurityPoliciesRequest {
|
|
|
3497
3829
|
*/
|
|
3498
3830
|
NextToken?: string;
|
|
3499
3831
|
}
|
|
3832
|
+
/**
|
|
3833
|
+
* @public
|
|
3834
|
+
*/
|
|
3500
3835
|
export interface ListSecurityPoliciesResponse {
|
|
3501
3836
|
/**
|
|
3502
3837
|
* <p>When you can get additional results from the <code>ListSecurityPolicies</code> operation,
|
|
@@ -3509,6 +3844,9 @@ export interface ListSecurityPoliciesResponse {
|
|
|
3509
3844
|
*/
|
|
3510
3845
|
SecurityPolicyNames: string[] | undefined;
|
|
3511
3846
|
}
|
|
3847
|
+
/**
|
|
3848
|
+
* @public
|
|
3849
|
+
*/
|
|
3512
3850
|
export interface ListServersRequest {
|
|
3513
3851
|
/**
|
|
3514
3852
|
* <p>Specifies the number of servers to return as a response to the <code>ListServers</code>
|
|
@@ -3523,6 +3861,9 @@ export interface ListServersRequest {
|
|
|
3523
3861
|
*/
|
|
3524
3862
|
NextToken?: string;
|
|
3525
3863
|
}
|
|
3864
|
+
/**
|
|
3865
|
+
* @public
|
|
3866
|
+
*/
|
|
3526
3867
|
export interface ListServersResponse {
|
|
3527
3868
|
/**
|
|
3528
3869
|
* <p>When you can get additional results from the <code>ListServers</code> operation, a
|
|
@@ -3535,6 +3876,9 @@ export interface ListServersResponse {
|
|
|
3535
3876
|
*/
|
|
3536
3877
|
Servers: ListedServer[] | undefined;
|
|
3537
3878
|
}
|
|
3879
|
+
/**
|
|
3880
|
+
* @public
|
|
3881
|
+
*/
|
|
3538
3882
|
export interface ListTagsForResourceRequest {
|
|
3539
3883
|
/**
|
|
3540
3884
|
* <p>Requests the tags associated with a particular Amazon Resource Name (ARN). An ARN is an
|
|
@@ -3553,6 +3897,9 @@ export interface ListTagsForResourceRequest {
|
|
|
3553
3897
|
*/
|
|
3554
3898
|
NextToken?: string;
|
|
3555
3899
|
}
|
|
3900
|
+
/**
|
|
3901
|
+
* @public
|
|
3902
|
+
*/
|
|
3556
3903
|
export interface ListTagsForResourceResponse {
|
|
3557
3904
|
/**
|
|
3558
3905
|
* <p>The ARN you specified to list the tags of.</p>
|
|
@@ -3571,6 +3918,9 @@ export interface ListTagsForResourceResponse {
|
|
|
3571
3918
|
*/
|
|
3572
3919
|
Tags?: Tag[];
|
|
3573
3920
|
}
|
|
3921
|
+
/**
|
|
3922
|
+
* @public
|
|
3923
|
+
*/
|
|
3574
3924
|
export interface ListUsersRequest {
|
|
3575
3925
|
/**
|
|
3576
3926
|
* <p>Specifies the number of users to return as a response to the <code>ListUsers</code>
|
|
@@ -3589,6 +3939,9 @@ export interface ListUsersRequest {
|
|
|
3589
3939
|
*/
|
|
3590
3940
|
ServerId: string | undefined;
|
|
3591
3941
|
}
|
|
3942
|
+
/**
|
|
3943
|
+
* @public
|
|
3944
|
+
*/
|
|
3592
3945
|
export interface ListUsersResponse {
|
|
3593
3946
|
/**
|
|
3594
3947
|
* <p>When you can get additional results from the <code>ListUsers</code> call, a
|
|
@@ -3607,6 +3960,9 @@ export interface ListUsersResponse {
|
|
|
3607
3960
|
*/
|
|
3608
3961
|
Users: ListedUser[] | undefined;
|
|
3609
3962
|
}
|
|
3963
|
+
/**
|
|
3964
|
+
* @public
|
|
3965
|
+
*/
|
|
3610
3966
|
export interface ListWorkflowsRequest {
|
|
3611
3967
|
/**
|
|
3612
3968
|
* <p>Specifies the maximum number of workflows to return.</p>
|
|
@@ -3620,6 +3976,9 @@ export interface ListWorkflowsRequest {
|
|
|
3620
3976
|
*/
|
|
3621
3977
|
NextToken?: string;
|
|
3622
3978
|
}
|
|
3979
|
+
/**
|
|
3980
|
+
* @public
|
|
3981
|
+
*/
|
|
3623
3982
|
export interface ListWorkflowsResponse {
|
|
3624
3983
|
/**
|
|
3625
3984
|
* <p>
|
|
@@ -3633,6 +3992,9 @@ export interface ListWorkflowsResponse {
|
|
|
3633
3992
|
*/
|
|
3634
3993
|
Workflows: ListedWorkflow[] | undefined;
|
|
3635
3994
|
}
|
|
3995
|
+
/**
|
|
3996
|
+
* @public
|
|
3997
|
+
*/
|
|
3636
3998
|
export interface SendWorkflowStepStateRequest {
|
|
3637
3999
|
/**
|
|
3638
4000
|
* <p>A unique identifier for the workflow.</p>
|
|
@@ -3651,8 +4013,14 @@ export interface SendWorkflowStepStateRequest {
|
|
|
3651
4013
|
*/
|
|
3652
4014
|
Status: CustomStepStatus | string | undefined;
|
|
3653
4015
|
}
|
|
4016
|
+
/**
|
|
4017
|
+
* @public
|
|
4018
|
+
*/
|
|
3654
4019
|
export interface SendWorkflowStepStateResponse {
|
|
3655
4020
|
}
|
|
4021
|
+
/**
|
|
4022
|
+
* @public
|
|
4023
|
+
*/
|
|
3656
4024
|
export interface StartFileTransferRequest {
|
|
3657
4025
|
/**
|
|
3658
4026
|
* <p>The unique identifier for the connector. </p>
|
|
@@ -3666,24 +4034,36 @@ export interface StartFileTransferRequest {
|
|
|
3666
4034
|
*/
|
|
3667
4035
|
SendFilePaths: string[] | undefined;
|
|
3668
4036
|
}
|
|
4037
|
+
/**
|
|
4038
|
+
* @public
|
|
4039
|
+
*/
|
|
3669
4040
|
export interface StartFileTransferResponse {
|
|
3670
4041
|
/**
|
|
3671
4042
|
* <p>Returns the unique identifier for this file transfer. </p>
|
|
3672
4043
|
*/
|
|
3673
4044
|
TransferId: string | undefined;
|
|
3674
4045
|
}
|
|
4046
|
+
/**
|
|
4047
|
+
* @public
|
|
4048
|
+
*/
|
|
3675
4049
|
export interface StartServerRequest {
|
|
3676
4050
|
/**
|
|
3677
4051
|
* <p>A system-assigned unique identifier for a server that you start.</p>
|
|
3678
4052
|
*/
|
|
3679
4053
|
ServerId: string | undefined;
|
|
3680
4054
|
}
|
|
4055
|
+
/**
|
|
4056
|
+
* @public
|
|
4057
|
+
*/
|
|
3681
4058
|
export interface StopServerRequest {
|
|
3682
4059
|
/**
|
|
3683
4060
|
* <p>A system-assigned unique identifier for a server that you stopped.</p>
|
|
3684
4061
|
*/
|
|
3685
4062
|
ServerId: string | undefined;
|
|
3686
4063
|
}
|
|
4064
|
+
/**
|
|
4065
|
+
* @public
|
|
4066
|
+
*/
|
|
3687
4067
|
export interface TagResourceRequest {
|
|
3688
4068
|
/**
|
|
3689
4069
|
* <p>An Amazon Resource Name (ARN) for a specific Amazon Web Services resource, such as a server, user, or
|
|
@@ -3696,6 +4076,9 @@ export interface TagResourceRequest {
|
|
|
3696
4076
|
*/
|
|
3697
4077
|
Tags: Tag[] | undefined;
|
|
3698
4078
|
}
|
|
4079
|
+
/**
|
|
4080
|
+
* @public
|
|
4081
|
+
*/
|
|
3699
4082
|
export interface TestIdentityProviderRequest {
|
|
3700
4083
|
/**
|
|
3701
4084
|
* <p>A system-assigned identifier for a specific server. That server's user authentication
|
|
@@ -3731,6 +4114,9 @@ export interface TestIdentityProviderRequest {
|
|
|
3731
4114
|
*/
|
|
3732
4115
|
UserPassword?: string;
|
|
3733
4116
|
}
|
|
4117
|
+
/**
|
|
4118
|
+
* @public
|
|
4119
|
+
*/
|
|
3734
4120
|
export interface TestIdentityProviderResponse {
|
|
3735
4121
|
/**
|
|
3736
4122
|
* <p>The response that is returned from your API Gateway.</p>
|
|
@@ -3752,6 +4138,9 @@ export interface TestIdentityProviderResponse {
|
|
|
3752
4138
|
*/
|
|
3753
4139
|
Url: string | undefined;
|
|
3754
4140
|
}
|
|
4141
|
+
/**
|
|
4142
|
+
* @public
|
|
4143
|
+
*/
|
|
3755
4144
|
export interface UntagResourceRequest {
|
|
3756
4145
|
/**
|
|
3757
4146
|
* <p>The value of the resource that will have the tag removed. An Amazon Resource Name (ARN) is
|
|
@@ -3764,6 +4153,9 @@ export interface UntagResourceRequest {
|
|
|
3764
4153
|
*/
|
|
3765
4154
|
TagKeys: string[] | undefined;
|
|
3766
4155
|
}
|
|
4156
|
+
/**
|
|
4157
|
+
* @public
|
|
4158
|
+
*/
|
|
3767
4159
|
export interface UpdateAccessRequest {
|
|
3768
4160
|
/**
|
|
3769
4161
|
* <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
|
|
@@ -3788,7 +4180,7 @@ export interface UpdateAccessRequest {
|
|
|
3788
4180
|
* <i>LOGICAL</i>.</p>
|
|
3789
4181
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example.</p>
|
|
3790
4182
|
* <p>
|
|
3791
|
-
* <code>[ { "Entry": "/directory1", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
4183
|
+
* <code>[ \{ "Entry": "/directory1", "Target": "/bucket_name/home/mydirectory" \} ]</code>
|
|
3792
4184
|
* </p>
|
|
3793
4185
|
* <p>In most cases, you can use this value instead of the session policy to lock down your
|
|
3794
4186
|
* user to the designated home directory ("<code>chroot</code>"). To do this, you can set
|
|
@@ -3796,14 +4188,14 @@ export interface UpdateAccessRequest {
|
|
|
3796
4188
|
* <code>HomeDirectory</code> parameter value.</p>
|
|
3797
4189
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example for <code>chroot</code>.</p>
|
|
3798
4190
|
* <p>
|
|
3799
|
-
* <code>[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
4191
|
+
* <code>[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]</code>
|
|
3800
4192
|
* </p>
|
|
3801
4193
|
*/
|
|
3802
4194
|
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
3803
4195
|
/**
|
|
3804
4196
|
* <p>A session policy for your user so that you can use the same Identity and Access Management (IAM) role across multiple users. This policy scopes down a user's
|
|
3805
|
-
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code
|
|
3806
|
-
* <code
|
|
4197
|
+
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code>$\{Transfer:UserName\}</code>,
|
|
4198
|
+
* <code>$\{Transfer:HomeDirectory\}</code>, and <code>$\{Transfer:HomeBucket\}</code>.</p>
|
|
3807
4199
|
* <note>
|
|
3808
4200
|
* <p>This policy applies only when the domain of <code>ServerId</code> is Amazon S3. Amazon EFS does not use session policies.</p>
|
|
3809
4201
|
* <p>For session policies, Transfer Family stores the policy as a JSON blob, instead
|
|
@@ -3841,7 +4233,7 @@ export interface UpdateAccessRequest {
|
|
|
3841
4233
|
* resources over the enabled protocols using Transfer Family. If you know the group name,
|
|
3842
4234
|
* you can view the SID values by running the following command using Windows PowerShell.</p>
|
|
3843
4235
|
* <p>
|
|
3844
|
-
* <code>Get-ADGroup -Filter {samAccountName -like "<i>YourGroupName</i>*"} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
4236
|
+
* <code>Get-ADGroup -Filter \{samAccountName -like "<i>YourGroupName</i>*"\} -Properties * | Select SamAccountName,ObjectSid</code>
|
|
3845
4237
|
* </p>
|
|
3846
4238
|
* <p>In that command, replace <i>YourGroupName</i> with the name of your Active Directory group.</p>
|
|
3847
4239
|
* <p>The regular expression used to validate this parameter is a string of characters consisting of uppercase and lowercase alphanumeric characters with no spaces.
|
|
@@ -3849,6 +4241,9 @@ export interface UpdateAccessRequest {
|
|
|
3849
4241
|
*/
|
|
3850
4242
|
ExternalId: string | undefined;
|
|
3851
4243
|
}
|
|
4244
|
+
/**
|
|
4245
|
+
* @public
|
|
4246
|
+
*/
|
|
3852
4247
|
export interface UpdateAccessResponse {
|
|
3853
4248
|
/**
|
|
3854
4249
|
* <p>The identifier of the server that the user is attached to.</p>
|
|
@@ -3860,6 +4255,9 @@ export interface UpdateAccessResponse {
|
|
|
3860
4255
|
*/
|
|
3861
4256
|
ExternalId: string | undefined;
|
|
3862
4257
|
}
|
|
4258
|
+
/**
|
|
4259
|
+
* @public
|
|
4260
|
+
*/
|
|
3863
4261
|
export interface UpdateAgreementRequest {
|
|
3864
4262
|
/**
|
|
3865
4263
|
* <p>A unique identifier for the agreement. This identifier is returned when you create an agreement.</p>
|
|
@@ -3910,12 +4308,18 @@ export interface UpdateAgreementRequest {
|
|
|
3910
4308
|
*/
|
|
3911
4309
|
AccessRole?: string;
|
|
3912
4310
|
}
|
|
4311
|
+
/**
|
|
4312
|
+
* @public
|
|
4313
|
+
*/
|
|
3913
4314
|
export interface UpdateAgreementResponse {
|
|
3914
4315
|
/**
|
|
3915
4316
|
* <p>A unique identifier for the agreement. This identifier is returned when you create an agreement.</p>
|
|
3916
4317
|
*/
|
|
3917
4318
|
AgreementId: string | undefined;
|
|
3918
4319
|
}
|
|
4320
|
+
/**
|
|
4321
|
+
* @public
|
|
4322
|
+
*/
|
|
3919
4323
|
export interface UpdateCertificateRequest {
|
|
3920
4324
|
/**
|
|
3921
4325
|
* <p>The identifier of the certificate object that you are updating.</p>
|
|
@@ -3934,12 +4338,18 @@ export interface UpdateCertificateRequest {
|
|
|
3934
4338
|
*/
|
|
3935
4339
|
Description?: string;
|
|
3936
4340
|
}
|
|
4341
|
+
/**
|
|
4342
|
+
* @public
|
|
4343
|
+
*/
|
|
3937
4344
|
export interface UpdateCertificateResponse {
|
|
3938
4345
|
/**
|
|
3939
4346
|
* <p>Returns the identifier of the certificate object that you are updating.</p>
|
|
3940
4347
|
*/
|
|
3941
4348
|
CertificateId: string | undefined;
|
|
3942
4349
|
}
|
|
4350
|
+
/**
|
|
4351
|
+
* @public
|
|
4352
|
+
*/
|
|
3943
4353
|
export interface UpdateConnectorRequest {
|
|
3944
4354
|
/**
|
|
3945
4355
|
* <p>The unique identifier for the connector.</p>
|
|
@@ -3973,12 +4383,18 @@ export interface UpdateConnectorRequest {
|
|
|
3973
4383
|
*/
|
|
3974
4384
|
LoggingRole?: string;
|
|
3975
4385
|
}
|
|
4386
|
+
/**
|
|
4387
|
+
* @public
|
|
4388
|
+
*/
|
|
3976
4389
|
export interface UpdateConnectorResponse {
|
|
3977
4390
|
/**
|
|
3978
4391
|
* <p>Returns the identifier of the connector object that you are updating.</p>
|
|
3979
4392
|
*/
|
|
3980
4393
|
ConnectorId: string | undefined;
|
|
3981
4394
|
}
|
|
4395
|
+
/**
|
|
4396
|
+
* @public
|
|
4397
|
+
*/
|
|
3982
4398
|
export interface UpdateHostKeyRequest {
|
|
3983
4399
|
/**
|
|
3984
4400
|
* <p>The identifier of the server that contains the host key that you are updating.</p>
|
|
@@ -3993,6 +4409,9 @@ export interface UpdateHostKeyRequest {
|
|
|
3993
4409
|
*/
|
|
3994
4410
|
Description: string | undefined;
|
|
3995
4411
|
}
|
|
4412
|
+
/**
|
|
4413
|
+
* @public
|
|
4414
|
+
*/
|
|
3996
4415
|
export interface UpdateHostKeyResponse {
|
|
3997
4416
|
/**
|
|
3998
4417
|
* <p>Returns the server identifier for the server that contains the updated host key.</p>
|
|
@@ -4003,6 +4422,9 @@ export interface UpdateHostKeyResponse {
|
|
|
4003
4422
|
*/
|
|
4004
4423
|
HostKeyId: string | undefined;
|
|
4005
4424
|
}
|
|
4425
|
+
/**
|
|
4426
|
+
* @public
|
|
4427
|
+
*/
|
|
4006
4428
|
export interface UpdateProfileRequest {
|
|
4007
4429
|
/**
|
|
4008
4430
|
* <p>The identifier of the profile object that you are updating.</p>
|
|
@@ -4013,12 +4435,18 @@ export interface UpdateProfileRequest {
|
|
|
4013
4435
|
*/
|
|
4014
4436
|
CertificateIds?: string[];
|
|
4015
4437
|
}
|
|
4438
|
+
/**
|
|
4439
|
+
* @public
|
|
4440
|
+
*/
|
|
4016
4441
|
export interface UpdateProfileResponse {
|
|
4017
4442
|
/**
|
|
4018
4443
|
* <p>Returns the identifier for the profile that's being updated.</p>
|
|
4019
4444
|
*/
|
|
4020
4445
|
ProfileId: string | undefined;
|
|
4021
4446
|
}
|
|
4447
|
+
/**
|
|
4448
|
+
* @public
|
|
4449
|
+
*/
|
|
4022
4450
|
export interface UpdateServerRequest {
|
|
4023
4451
|
/**
|
|
4024
4452
|
* <p>The Amazon Resource Name (ARN) of the Amazon Web ServicesCertificate Manager (ACM) certificate. Required
|
|
@@ -4231,11 +4659,14 @@ export interface UpdateServerRequest {
|
|
|
4231
4659
|
* the session disconnects.</p>
|
|
4232
4660
|
* <p>To remove an associated workflow from a server, you can provide an empty <code>OnUpload</code> object, as in the following example.</p>
|
|
4233
4661
|
* <p>
|
|
4234
|
-
* <code>aws transfer update-server --server-id s-01234567890abcdef --workflow-details '{"OnUpload":[]}'</code>
|
|
4662
|
+
* <code>aws transfer update-server --server-id s-01234567890abcdef --workflow-details '\{"OnUpload":[]\}'</code>
|
|
4235
4663
|
* </p>
|
|
4236
4664
|
*/
|
|
4237
4665
|
WorkflowDetails?: WorkflowDetails;
|
|
4238
4666
|
}
|
|
4667
|
+
/**
|
|
4668
|
+
* @public
|
|
4669
|
+
*/
|
|
4239
4670
|
export interface UpdateServerResponse {
|
|
4240
4671
|
/**
|
|
4241
4672
|
* <p>A system-assigned unique identifier for a server that the user account is assigned
|
|
@@ -4243,6 +4674,9 @@ export interface UpdateServerResponse {
|
|
|
4243
4674
|
*/
|
|
4244
4675
|
ServerId: string | undefined;
|
|
4245
4676
|
}
|
|
4677
|
+
/**
|
|
4678
|
+
* @public
|
|
4679
|
+
*/
|
|
4246
4680
|
export interface UpdateUserRequest {
|
|
4247
4681
|
/**
|
|
4248
4682
|
* <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
|
|
@@ -4267,7 +4701,7 @@ export interface UpdateUserRequest {
|
|
|
4267
4701
|
* <i>LOGICAL</i>.</p>
|
|
4268
4702
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example.</p>
|
|
4269
4703
|
* <p>
|
|
4270
|
-
* <code>[ { "Entry": "/directory1", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
4704
|
+
* <code>[ \{ "Entry": "/directory1", "Target": "/bucket_name/home/mydirectory" \} ]</code>
|
|
4271
4705
|
* </p>
|
|
4272
4706
|
* <p>In most cases, you can use this value instead of the session policy to lock down your
|
|
4273
4707
|
* user to the designated home directory ("<code>chroot</code>"). To do this, you can set
|
|
@@ -4275,14 +4709,14 @@ export interface UpdateUserRequest {
|
|
|
4275
4709
|
* parameter value.</p>
|
|
4276
4710
|
* <p>The following is an <code>Entry</code> and <code>Target</code> pair example for <code>chroot</code>.</p>
|
|
4277
4711
|
* <p>
|
|
4278
|
-
* <code>[ { "Entry": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
4712
|
+
* <code>[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]</code>
|
|
4279
4713
|
* </p>
|
|
4280
4714
|
*/
|
|
4281
4715
|
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
4282
4716
|
/**
|
|
4283
4717
|
* <p>A session policy for your user so that you can use the same Identity and Access Management (IAM) role across multiple users. This policy scopes down a user's
|
|
4284
|
-
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code
|
|
4285
|
-
* <code
|
|
4718
|
+
* access to portions of their Amazon S3 bucket. Variables that you can use inside this policy include <code>$\{Transfer:UserName\}</code>,
|
|
4719
|
+
* <code>$\{Transfer:HomeDirectory\}</code>, and <code>$\{Transfer:HomeBucket\}</code>.</p>
|
|
4286
4720
|
* <note>
|
|
4287
4721
|
* <p>This policy applies only when the domain of <code>ServerId</code> is Amazon S3. Amazon EFS does not use session policies.</p>
|
|
4288
4722
|
* <p>For session policies, Transfer Family stores the policy as a JSON blob, instead
|
|
@@ -4325,6 +4759,7 @@ export interface UpdateUserRequest {
|
|
|
4325
4759
|
UserName: string | undefined;
|
|
4326
4760
|
}
|
|
4327
4761
|
/**
|
|
4762
|
+
* @public
|
|
4328
4763
|
* <p>
|
|
4329
4764
|
* <code>UpdateUserResponse</code> returns the user name and identifier for the request to
|
|
4330
4765
|
* update a user's properties.</p>
|