Skip to content

Commit d0d60da

Browse files
author
awstools
committed
feat(client-transfer): This release adds an option for customers to configure workflows that are triggered when files are only partially received from a client due to premature session disconnect.
1 parent 8ea9f3c commit d0d60da

File tree

10 files changed

+751
-548
lines changed

10 files changed

+751
-548
lines changed

clients/client-transfer/src/Transfer.ts

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ export class Transfer extends TransferClient {
347347

348348
/**
349349
* <p>Creates the connector, which captures the parameters for an outbound connection for the
350-
* AS2 protocol. The connector is required for sending files from a
351-
* customer's non Amazon Web Services server. </p>
350+
* AS2 protocol. The connector is required for sending files to an externally hosted AS2 server.
351+
* For more details about connectors, see <a href="https://docs.aws.amazon.com/transfer/latest/userguide/create-b2b-server.html#configure-as2-connector">Create AS2 connectors</a>.</p>
352352
*/
353353
public createConnector(
354354
args: CreateConnectorCommandInput,
@@ -380,8 +380,7 @@ export class Transfer extends TransferClient {
380380
}
381381

382382
/**
383-
* <p>Creates the profile for the AS2 process. The agreement is between the partner and the AS2
384-
* process.</p>
383+
* <p>Creates the local or partner profile to use for AS2 transfers.</p>
385384
*/
386385
public createProfile(
387386
args: CreateProfileCommandInput,
@@ -1231,7 +1230,8 @@ export class Transfer extends TransferClient {
12311230
}
12321231

12331232
/**
1234-
* <p>Adds a host key to the server specified by the <code>ServerId</code> parameter.</p>
1233+
* <p>Adds a host key to the server that's specified by the <code>ServerId</code>
1234+
* parameter.</p>
12351235
*/
12361236
public importHostKey(
12371237
args: ImportHostKeyCommandInput,
@@ -1465,7 +1465,8 @@ export class Transfer extends TransferClient {
14651465
}
14661466

14671467
/**
1468-
* <p>Returns a list of host keys for the server specified by the <code>ServerId</code> paramter.</p>
1468+
* <p>Returns a list of host keys for the server that's specified by the <code>ServerId</code>
1469+
* parameter.</p>
14691470
*/
14701471
public listHostKeys(
14711472
args: ListHostKeysCommandInput,
@@ -1714,7 +1715,7 @@ export class Transfer extends TransferClient {
17141715
}
17151716

17161717
/**
1717-
* <p>Begins an outbound file transfer. You specify the <code>ConnectorId</code> and the file
1718+
* <p>Begins an outbound file transfer to a remote AS2 server. You specify the <code>ConnectorId</code> and the file
17181719
* paths for where to send the files. </p>
17191720
*/
17201721
public startFileTransfer(
@@ -2085,7 +2086,8 @@ export class Transfer extends TransferClient {
20852086
}
20862087

20872088
/**
2088-
* <p>Updates the description for the host key specified by the specified by the <code>ServerId</code> and <code>HostKeyId</code> parameters.</p>
2089+
* <p>Updates the description for the host key that's specified by the <code>ServerId</code> and
2090+
* <code>HostKeyId</code> parameters.</p>
20892091
*/
20902092
public updateHostKey(
20912093
args: UpdateHostKeyCommandInput,

clients/client-transfer/src/commands/CreateConnectorCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
2929

3030
/**
3131
* <p>Creates the connector, which captures the parameters for an outbound connection for the
32-
* AS2 protocol. The connector is required for sending files from a
33-
* customer's non Amazon Web Services server. </p>
32+
* AS2 protocol. The connector is required for sending files to an externally hosted AS2 server.
33+
* For more details about connectors, see <a href="https://docs.aws.amazon.com/transfer/latest/userguide/create-b2b-server.html#configure-as2-connector">Create AS2 connectors</a>.</p>
3434
* @example
3535
* Use a bare-bones client and the command you need to make an API call.
3636
* ```javascript

clients/client-transfer/src/commands/CreateProfileCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ export interface CreateProfileCommandInput extends CreateProfileRequest {}
2828
export interface CreateProfileCommandOutput extends CreateProfileResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Creates the profile for the AS2 process. The agreement is between the partner and the AS2
32-
* process.</p>
31+
* <p>Creates the local or partner profile to use for AS2 transfers.</p>
3332
* @example
3433
* Use a bare-bones client and the command you need to make an API call.
3534
* ```javascript

clients/client-transfer/src/commands/ImportHostKeyCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export interface ImportHostKeyCommandInput extends ImportHostKeyRequest {}
2828
export interface ImportHostKeyCommandOutput extends ImportHostKeyResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Adds a host key to the server specified by the <code>ServerId</code> parameter.</p>
31+
* <p>Adds a host key to the server that's specified by the <code>ServerId</code>
32+
* parameter.</p>
3233
* @example
3334
* Use a bare-bones client and the command you need to make an API call.
3435
* ```javascript

clients/client-transfer/src/commands/ListHostKeysCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export interface ListHostKeysCommandInput extends ListHostKeysRequest {}
2828
export interface ListHostKeysCommandOutput extends ListHostKeysResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Returns a list of host keys for the server specified by the <code>ServerId</code> paramter.</p>
31+
* <p>Returns a list of host keys for the server that's specified by the <code>ServerId</code>
32+
* parameter.</p>
3233
* @example
3334
* Use a bare-bones client and the command you need to make an API call.
3435
* ```javascript

clients/client-transfer/src/commands/StartFileTransferCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface StartFileTransferCommandInput extends StartFileTransferRequest
2828
export interface StartFileTransferCommandOutput extends StartFileTransferResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Begins an outbound file transfer. You specify the <code>ConnectorId</code> and the file
31+
* <p>Begins an outbound file transfer to a remote AS2 server. You specify the <code>ConnectorId</code> and the file
3232
* paths for where to send the files. </p>
3333
* @example
3434
* Use a bare-bones client and the command you need to make an API call.

clients/client-transfer/src/commands/UpdateHostKeyCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export interface UpdateHostKeyCommandInput extends UpdateHostKeyRequest {}
2828
export interface UpdateHostKeyCommandOutput extends UpdateHostKeyResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Updates the description for the host key specified by the specified by the <code>ServerId</code> and <code>HostKeyId</code> parameters.</p>
31+
* <p>Updates the description for the host key that's specified by the <code>ServerId</code> and
32+
* <code>HostKeyId</code> parameters.</p>
3233
* @example
3334
* Use a bare-bones client and the command you need to make an API call.
3435
* ```javascript

0 commit comments

Comments
 (0)