@aws-sdk/client-transfer 3.418.0 → 3.423.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.
Files changed (62) hide show
  1. package/README.md +7 -7
  2. package/dist-types/commands/CreateAccessCommand.d.ts +2 -2
  3. package/dist-types/commands/CreateAgreementCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateConnectorCommand.d.ts +2 -2
  5. package/dist-types/commands/CreateProfileCommand.d.ts +1 -1
  6. package/dist-types/commands/CreateServerCommand.d.ts +2 -2
  7. package/dist-types/commands/CreateUserCommand.d.ts +2 -2
  8. package/dist-types/commands/CreateWorkflowCommand.d.ts +2 -2
  9. package/dist-types/commands/DeleteAccessCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteAgreementCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteCertificateCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteConnectorCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteHostKeyCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteProfileCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteServerCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteSshPublicKeyCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteUserCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteWorkflowCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeAccessCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeAgreementCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeCertificateCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeConnectorCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeExecutionCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribeHostKeyCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeProfileCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeSecurityPolicyCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribeServerCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeUserCommand.d.ts +1 -1
  29. package/dist-types/commands/DescribeWorkflowCommand.d.ts +1 -1
  30. package/dist-types/commands/ImportCertificateCommand.d.ts +1 -1
  31. package/dist-types/commands/ImportHostKeyCommand.d.ts +2 -2
  32. package/dist-types/commands/ImportSshPublicKeyCommand.d.ts +2 -2
  33. package/dist-types/commands/ListAccessesCommand.d.ts +1 -1
  34. package/dist-types/commands/ListAgreementsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListCertificatesCommand.d.ts +1 -1
  36. package/dist-types/commands/ListConnectorsCommand.d.ts +1 -1
  37. package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListHostKeysCommand.d.ts +1 -1
  39. package/dist-types/commands/ListProfilesCommand.d.ts +1 -1
  40. package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +1 -1
  41. package/dist-types/commands/ListServersCommand.d.ts +1 -1
  42. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  43. package/dist-types/commands/ListUsersCommand.d.ts +1 -1
  44. package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
  45. package/dist-types/commands/SendWorkflowStepStateCommand.d.ts +1 -1
  46. package/dist-types/commands/StartFileTransferCommand.d.ts +1 -1
  47. package/dist-types/commands/StartServerCommand.d.ts +1 -1
  48. package/dist-types/commands/StopServerCommand.d.ts +1 -1
  49. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  50. package/dist-types/commands/TestConnectionCommand.d.ts +2 -2
  51. package/dist-types/commands/TestIdentityProviderCommand.d.ts +1 -1
  52. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  53. package/dist-types/commands/UpdateAccessCommand.d.ts +2 -2
  54. package/dist-types/commands/UpdateAgreementCommand.d.ts +2 -2
  55. package/dist-types/commands/UpdateCertificateCommand.d.ts +1 -1
  56. package/dist-types/commands/UpdateConnectorCommand.d.ts +2 -2
  57. package/dist-types/commands/UpdateHostKeyCommand.d.ts +1 -1
  58. package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
  59. package/dist-types/commands/UpdateServerCommand.d.ts +2 -2
  60. package/dist-types/commands/UpdateUserCommand.d.ts +1 -1
  61. package/dist-types/models/models_0.d.ts +118 -34
  62. package/package.json +3 -3
package/README.md CHANGED
@@ -32,16 +32,16 @@ using your favorite package manager:
32
32
 
33
33
  The AWS SDK is modulized by clients and commands.
34
34
  To send a request, you only need to import the `TransferClient` and
35
- the commands you need, for example `CreateAccessCommand`:
35
+ the commands you need, for example `ListServersCommand`:
36
36
 
37
37
  ```js
38
38
  // ES5 example
39
- const { TransferClient, CreateAccessCommand } = require("@aws-sdk/client-transfer");
39
+ const { TransferClient, ListServersCommand } = require("@aws-sdk/client-transfer");
40
40
  ```
41
41
 
42
42
  ```ts
43
43
  // ES6+ example
44
- import { TransferClient, CreateAccessCommand } from "@aws-sdk/client-transfer";
44
+ import { TransferClient, ListServersCommand } from "@aws-sdk/client-transfer";
45
45
  ```
46
46
 
47
47
  ### Usage
@@ -60,7 +60,7 @@ const client = new TransferClient({ region: "REGION" });
60
60
  const params = {
61
61
  /** input parameters */
62
62
  };
63
- const command = new CreateAccessCommand(params);
63
+ const command = new ListServersCommand(params);
64
64
  ```
65
65
 
66
66
  #### Async/await
@@ -139,7 +139,7 @@ const client = new AWS.Transfer({ region: "REGION" });
139
139
 
140
140
  // async/await.
141
141
  try {
142
- const data = await client.createAccess(params);
142
+ const data = await client.listServers(params);
143
143
  // process data.
144
144
  } catch (error) {
145
145
  // error handling.
@@ -147,7 +147,7 @@ try {
147
147
 
148
148
  // Promises.
149
149
  client
150
- .createAccess(params)
150
+ .listServers(params)
151
151
  .then((data) => {
152
152
  // process data.
153
153
  })
@@ -156,7 +156,7 @@ client
156
156
  });
157
157
 
158
158
  // callbacks.
159
- client.createAccess(params, (err, data) => {
159
+ client.listServers(params, (err, data) => {
160
160
  // process err and data.
161
161
  });
162
162
  ```
@@ -72,13 +72,13 @@ export interface CreateAccessCommandOutput extends CreateAccessResponse, __Metad
72
72
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
73
73
  *
74
74
  * @throws {@link InternalServiceError} (server fault)
75
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
75
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
76
76
  *
77
77
  * @throws {@link InvalidRequestException} (client fault)
78
78
  * <p>This exception is thrown when the client submits a malformed request.</p>
79
79
  *
80
80
  * @throws {@link ResourceExistsException} (client fault)
81
- * <p>The requested resource does not exist.</p>
81
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
82
82
  *
83
83
  * @throws {@link ResourceNotFoundException} (client fault)
84
84
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -65,13 +65,13 @@ export interface CreateAgreementCommandOutput extends CreateAgreementResponse, _
65
65
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
66
66
  *
67
67
  * @throws {@link InternalServiceError} (server fault)
68
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
68
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
69
69
  *
70
70
  * @throws {@link InvalidRequestException} (client fault)
71
71
  * <p>This exception is thrown when the client submits a malformed request.</p>
72
72
  *
73
73
  * @throws {@link ResourceExistsException} (client fault)
74
- * <p>The requested resource does not exist.</p>
74
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
75
75
  *
76
76
  * @throws {@link ResourceNotFoundException} (client fault)
77
77
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -78,13 +78,13 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
78
78
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
79
79
  *
80
80
  * @throws {@link InternalServiceError} (server fault)
81
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
81
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
82
82
  *
83
83
  * @throws {@link InvalidRequestException} (client fault)
84
84
  * <p>This exception is thrown when the client submits a malformed request.</p>
85
85
  *
86
86
  * @throws {@link ResourceExistsException} (client fault)
87
- * <p>The requested resource does not exist.</p>
87
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
88
88
  *
89
89
  * @throws {@link ResourceNotFoundException} (client fault)
90
90
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -58,7 +58,7 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
58
58
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
59
59
  *
60
60
  * @throws {@link InternalServiceError} (server fault)
61
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
61
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
62
62
  *
63
63
  * @throws {@link InvalidRequestException} (client fault)
64
64
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -116,13 +116,13 @@ export interface CreateServerCommandOutput extends CreateServerResponse, __Metad
116
116
  * <p>You do not have sufficient access to perform this action.</p>
117
117
  *
118
118
  * @throws {@link InternalServiceError} (server fault)
119
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
119
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
120
120
  *
121
121
  * @throws {@link InvalidRequestException} (client fault)
122
122
  * <p>This exception is thrown when the client submits a malformed request.</p>
123
123
  *
124
124
  * @throws {@link ResourceExistsException} (client fault)
125
- * <p>The requested resource does not exist.</p>
125
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
126
126
  *
127
127
  * @throws {@link ResourceNotFoundException} (client fault)
128
128
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -80,13 +80,13 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
80
80
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
81
81
  *
82
82
  * @throws {@link InternalServiceError} (server fault)
83
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
83
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
84
84
  *
85
85
  * @throws {@link InvalidRequestException} (client fault)
86
86
  * <p>This exception is thrown when the client submits a malformed request.</p>
87
87
  *
88
88
  * @throws {@link ResourceExistsException} (client fault)
89
- * <p>The requested resource does not exist.</p>
89
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
90
90
  *
91
91
  * @throws {@link ResourceNotFoundException} (client fault)
92
92
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -172,13 +172,13 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
172
172
  * <p>You do not have sufficient access to perform this action.</p>
173
173
  *
174
174
  * @throws {@link InternalServiceError} (server fault)
175
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
175
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
176
176
  *
177
177
  * @throws {@link InvalidRequestException} (client fault)
178
178
  * <p>This exception is thrown when the client submits a malformed request.</p>
179
179
  *
180
180
  * @throws {@link ResourceExistsException} (client fault)
181
- * <p>The requested resource does not exist.</p>
181
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
182
182
  *
183
183
  * @throws {@link ServiceUnavailableException} (server fault)
184
184
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
@@ -48,7 +48,7 @@ export interface DeleteAccessCommandOutput extends __MetadataBearer {
48
48
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
49
49
  *
50
50
  * @throws {@link InternalServiceError} (server fault)
51
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
51
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
52
52
  *
53
53
  * @throws {@link InvalidRequestException} (client fault)
54
54
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -47,7 +47,7 @@ export interface DeleteAgreementCommandOutput extends __MetadataBearer {
47
47
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
48
48
  *
49
49
  * @throws {@link InternalServiceError} (server fault)
50
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
50
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
51
51
  *
52
52
  * @throws {@link InvalidRequestException} (client fault)
53
53
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -47,7 +47,7 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {
47
47
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
48
48
  *
49
49
  * @throws {@link InternalServiceError} (server fault)
50
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
50
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
51
51
  *
52
52
  * @throws {@link InvalidRequestException} (client fault)
53
53
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -46,7 +46,7 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {
46
46
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
47
47
  *
48
48
  * @throws {@link InternalServiceError} (server fault)
49
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
49
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
50
50
  *
51
51
  * @throws {@link InvalidRequestException} (client fault)
52
52
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -47,7 +47,7 @@ export interface DeleteHostKeyCommandOutput extends __MetadataBearer {
47
47
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
48
48
  *
49
49
  * @throws {@link InternalServiceError} (server fault)
50
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
50
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
51
51
  *
52
52
  * @throws {@link InvalidRequestException} (client fault)
53
53
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -46,7 +46,7 @@ export interface DeleteProfileCommandOutput extends __MetadataBearer {
46
46
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
47
47
  *
48
48
  * @throws {@link InternalServiceError} (server fault)
49
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
49
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
50
50
  *
51
51
  * @throws {@link InvalidRequestException} (client fault)
52
52
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -50,7 +50,7 @@ export interface DeleteServerCommandOutput extends __MetadataBearer {
50
50
  * <p>You do not have sufficient access to perform this action.</p>
51
51
  *
52
52
  * @throws {@link InternalServiceError} (server fault)
53
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
53
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
54
54
  *
55
55
  * @throws {@link InvalidRequestException} (client fault)
56
56
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -48,7 +48,7 @@ export interface DeleteSshPublicKeyCommandOutput extends __MetadataBearer {
48
48
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
49
49
  *
50
50
  * @throws {@link InternalServiceError} (server fault)
51
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
51
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
52
52
  *
53
53
  * @throws {@link InvalidRequestException} (client fault)
54
54
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -51,7 +51,7 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {
51
51
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
52
52
  *
53
53
  * @throws {@link InternalServiceError} (server fault)
54
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
54
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
55
55
  *
56
56
  * @throws {@link InvalidRequestException} (client fault)
57
57
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -49,7 +49,7 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
49
49
  * <p>You do not have sufficient access to perform this action.</p>
50
50
  *
51
51
  * @throws {@link InternalServiceError} (server fault)
52
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
52
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
53
53
  *
54
54
  * @throws {@link InvalidRequestException} (client fault)
55
55
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -73,7 +73,7 @@ export interface DescribeAccessCommandOutput extends DescribeAccessResponse, __M
73
73
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
74
74
  *
75
75
  * @throws {@link InternalServiceError} (server fault)
76
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
76
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
77
77
  *
78
78
  * @throws {@link InvalidRequestException} (client fault)
79
79
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -65,7 +65,7 @@ export interface DescribeAgreementCommandOutput extends DescribeAgreementRespons
65
65
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
66
66
  *
67
67
  * @throws {@link InternalServiceError} (server fault)
68
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
68
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
69
69
  *
70
70
  * @throws {@link InvalidRequestException} (client fault)
71
71
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -68,7 +68,7 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
68
68
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
69
69
  *
70
70
  * @throws {@link InternalServiceError} (server fault)
71
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
71
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
72
72
  *
73
73
  * @throws {@link InvalidRequestException} (client fault)
74
74
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -78,7 +78,7 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
78
78
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
79
79
  *
80
80
  * @throws {@link InternalServiceError} (server fault)
81
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
81
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
82
82
  *
83
83
  * @throws {@link InvalidRequestException} (client fault)
84
84
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -112,7 +112,7 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionRespons
112
112
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
113
113
  *
114
114
  * @throws {@link InternalServiceError} (server fault)
115
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
115
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
116
116
  *
117
117
  * @throws {@link InvalidRequestException} (client fault)
118
118
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -62,7 +62,7 @@ export interface DescribeHostKeyCommandOutput extends DescribeHostKeyResponse, _
62
62
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
63
63
  *
64
64
  * @throws {@link InternalServiceError} (server fault)
65
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
65
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
66
66
  *
67
67
  * @throws {@link InvalidRequestException} (client fault)
68
68
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -62,7 +62,7 @@ export interface DescribeProfileCommandOutput extends DescribeProfileResponse, _
62
62
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
63
63
  *
64
64
  * @throws {@link InternalServiceError} (server fault)
65
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
65
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
66
66
  *
67
67
  * @throws {@link InvalidRequestException} (client fault)
68
68
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -66,7 +66,7 @@ export interface DescribeSecurityPolicyCommandOutput extends DescribeSecurityPol
66
66
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
67
67
  *
68
68
  * @throws {@link InternalServiceError} (server fault)
69
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
69
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
70
70
  *
71
71
  * @throws {@link InvalidRequestException} (client fault)
72
72
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -120,7 +120,7 @@ export interface DescribeServerCommandOutput extends DescribeServerResponse, __M
120
120
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
121
121
  *
122
122
  * @throws {@link InternalServiceError} (server fault)
123
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
123
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
124
124
  *
125
125
  * @throws {@link InvalidRequestException} (client fault)
126
126
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -86,7 +86,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
86
86
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
87
87
  *
88
88
  * @throws {@link InternalServiceError} (server fault)
89
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
89
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
90
90
  *
91
91
  * @throws {@link InvalidRequestException} (client fault)
92
92
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -170,7 +170,7 @@ export interface DescribeWorkflowCommandOutput extends DescribeWorkflowResponse,
170
170
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
171
171
  *
172
172
  * @throws {@link InternalServiceError} (server fault)
173
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
173
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
174
174
  *
175
175
  * @throws {@link InvalidRequestException} (client fault)
176
176
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -62,7 +62,7 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
62
62
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
63
63
  *
64
64
  * @throws {@link InternalServiceError} (server fault)
65
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
65
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
66
66
  *
67
67
  * @throws {@link InvalidRequestException} (client fault)
68
68
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -58,13 +58,13 @@ export interface ImportHostKeyCommandOutput extends ImportHostKeyResponse, __Met
58
58
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
59
59
  *
60
60
  * @throws {@link InternalServiceError} (server fault)
61
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
61
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
62
62
  *
63
63
  * @throws {@link InvalidRequestException} (client fault)
64
64
  * <p>This exception is thrown when the client submits a malformed request.</p>
65
65
  *
66
66
  * @throws {@link ResourceExistsException} (client fault)
67
- * <p>The requested resource does not exist.</p>
67
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
68
68
  *
69
69
  * @throws {@link ResourceNotFoundException} (client fault)
70
70
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -56,13 +56,13 @@ export interface ImportSshPublicKeyCommandOutput extends ImportSshPublicKeyRespo
56
56
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
57
57
  *
58
58
  * @throws {@link InternalServiceError} (server fault)
59
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
59
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
60
60
  *
61
61
  * @throws {@link InvalidRequestException} (client fault)
62
62
  * <p>This exception is thrown when the client submits a malformed request.</p>
63
63
  *
64
64
  * @throws {@link ResourceExistsException} (client fault)
65
- * <p>The requested resource does not exist.</p>
65
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
66
66
  *
67
67
  * @throws {@link ResourceNotFoundException} (client fault)
68
68
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -59,7 +59,7 @@ export interface ListAccessesCommandOutput extends ListAccessesResponse, __Metad
59
59
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
60
60
  *
61
61
  * @throws {@link InternalServiceError} (server fault)
62
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
62
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
63
63
  *
64
64
  * @throws {@link InvalidNextTokenException} (client fault)
65
65
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -65,7 +65,7 @@ export interface ListAgreementsCommandOutput extends ListAgreementsResponse, __M
65
65
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
66
66
  *
67
67
  * @throws {@link InternalServiceError} (server fault)
68
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
68
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
69
69
  *
70
70
  * @throws {@link InvalidNextTokenException} (client fault)
71
71
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -65,7 +65,7 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
65
65
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
66
66
  *
67
67
  * @throws {@link InternalServiceError} (server fault)
68
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
68
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
69
69
  *
70
70
  * @throws {@link InvalidNextTokenException} (client fault)
71
71
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -56,7 +56,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
56
56
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
57
57
  *
58
58
  * @throws {@link InternalServiceError} (server fault)
59
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
59
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
60
60
  *
61
61
  * @throws {@link InvalidNextTokenException} (client fault)
62
62
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -80,7 +80,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M
80
80
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
81
81
  *
82
82
  * @throws {@link InternalServiceError} (server fault)
83
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
83
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
84
84
  *
85
85
  * @throws {@link InvalidNextTokenException} (client fault)
86
86
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -62,7 +62,7 @@ export interface ListHostKeysCommandOutput extends ListHostKeysResponse, __Metad
62
62
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
63
63
  *
64
64
  * @throws {@link InternalServiceError} (server fault)
65
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
65
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
66
66
  *
67
67
  * @throws {@link InvalidNextTokenException} (client fault)
68
68
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -61,7 +61,7 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad
61
61
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
62
62
  *
63
63
  * @throws {@link InternalServiceError} (server fault)
64
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
64
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
65
65
  *
66
66
  * @throws {@link InvalidNextTokenException} (client fault)
67
67
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -53,7 +53,7 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
53
53
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
54
54
  *
55
55
  * @throws {@link InternalServiceError} (server fault)
56
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
56
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
57
57
  *
58
58
  * @throws {@link InvalidNextTokenException} (client fault)
59
59
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -62,7 +62,7 @@ export interface ListServersCommandOutput extends ListServersResponse, __Metadat
62
62
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
63
63
  *
64
64
  * @throws {@link InternalServiceError} (server fault)
65
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
65
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
66
66
  *
67
67
  * @throws {@link InvalidNextTokenException} (client fault)
68
68
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -58,7 +58,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
58
58
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
59
59
  *
60
60
  * @throws {@link InternalServiceError} (server fault)
61
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
61
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
62
62
  *
63
63
  * @throws {@link InvalidNextTokenException} (client fault)
64
64
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -62,7 +62,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
62
62
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
63
63
  *
64
64
  * @throws {@link InternalServiceError} (server fault)
65
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
65
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
66
66
  *
67
67
  * @throws {@link InvalidNextTokenException} (client fault)
68
68
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -56,7 +56,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
56
56
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
57
57
  *
58
58
  * @throws {@link InternalServiceError} (server fault)
59
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
59
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
60
60
  *
61
61
  * @throws {@link InvalidNextTokenException} (client fault)
62
62
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
@@ -56,7 +56,7 @@ export interface SendWorkflowStepStateCommandOutput extends SendWorkflowStepStat
56
56
  * <p>You do not have sufficient access to perform this action.</p>
57
57
  *
58
58
  * @throws {@link InternalServiceError} (server fault)
59
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
59
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
60
60
  *
61
61
  * @throws {@link InvalidRequestException} (client fault)
62
62
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -81,7 +81,7 @@ export interface StartFileTransferCommandOutput extends StartFileTransferRespons
81
81
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
82
82
  *
83
83
  * @throws {@link InternalServiceError} (server fault)
84
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
84
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
85
85
  *
86
86
  * @throws {@link InvalidRequestException} (client fault)
87
87
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -52,7 +52,7 @@ export interface StartServerCommandOutput extends __MetadataBearer {
52
52
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
53
53
  *
54
54
  * @throws {@link InternalServiceError} (server fault)
55
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
55
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
56
56
  *
57
57
  * @throws {@link InvalidRequestException} (client fault)
58
58
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -57,7 +57,7 @@ export interface StopServerCommandOutput extends __MetadataBearer {
57
57
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
58
58
  *
59
59
  * @throws {@link InternalServiceError} (server fault)
60
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
60
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
61
61
  *
62
62
  * @throws {@link InvalidRequestException} (client fault)
63
63
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -54,7 +54,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
54
54
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
55
55
  *
56
56
  * @throws {@link InternalServiceError} (server fault)
57
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
57
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
58
58
  *
59
59
  * @throws {@link InvalidRequestException} (client fault)
60
60
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -24,7 +24,7 @@ export interface TestConnectionCommandOutput extends TestConnectionResponse, __M
24
24
  /**
25
25
  * @public
26
26
  * <p>Tests whether your SFTP connector is set up successfully. We highly recommend that you call this
27
- * operation to test your ability to transfer files between a Transfer Family server and a trading partner's
27
+ * operation to test your ability to transfer files between local Amazon Web Services storage and a trading partner's
28
28
  * SFTP server.</p>
29
29
  * @example
30
30
  * Use a bare-bones client and the command you need to make an API call.
@@ -52,7 +52,7 @@ export interface TestConnectionCommandOutput extends TestConnectionResponse, __M
52
52
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
53
53
  *
54
54
  * @throws {@link InternalServiceError} (server fault)
55
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
55
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
56
56
  *
57
57
  * @throws {@link InvalidRequestException} (client fault)
58
58
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -104,7 +104,7 @@ export interface TestIdentityProviderCommandOutput extends TestIdentityProviderR
104
104
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
105
105
  *
106
106
  * @throws {@link InternalServiceError} (server fault)
107
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
107
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
108
108
  *
109
109
  * @throws {@link InvalidRequestException} (client fault)
110
110
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -51,7 +51,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
51
51
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
52
52
  *
53
53
  * @throws {@link InternalServiceError} (server fault)
54
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
54
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
55
55
  *
56
56
  * @throws {@link InvalidRequestException} (client fault)
57
57
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -68,13 +68,13 @@ export interface UpdateAccessCommandOutput extends UpdateAccessResponse, __Metad
68
68
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
69
69
  *
70
70
  * @throws {@link InternalServiceError} (server fault)
71
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
71
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
72
72
  *
73
73
  * @throws {@link InvalidRequestException} (client fault)
74
74
  * <p>This exception is thrown when the client submits a malformed request.</p>
75
75
  *
76
76
  * @throws {@link ResourceExistsException} (client fault)
77
- * <p>The requested resource does not exist.</p>
77
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
78
78
  *
79
79
  * @throws {@link ResourceNotFoundException} (client fault)
80
80
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -57,13 +57,13 @@ export interface UpdateAgreementCommandOutput extends UpdateAgreementResponse, _
57
57
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
58
58
  *
59
59
  * @throws {@link InternalServiceError} (server fault)
60
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
60
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
61
61
  *
62
62
  * @throws {@link InvalidRequestException} (client fault)
63
63
  * <p>This exception is thrown when the client submits a malformed request.</p>
64
64
  *
65
65
  * @throws {@link ResourceExistsException} (client fault)
66
- * <p>The requested resource does not exist.</p>
66
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
67
67
  *
68
68
  * @throws {@link ResourceNotFoundException} (client fault)
69
69
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -51,7 +51,7 @@ export interface UpdateCertificateCommandOutput extends UpdateCertificateRespons
51
51
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
52
52
  *
53
53
  * @throws {@link InternalServiceError} (server fault)
54
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
54
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
55
55
  *
56
56
  * @throws {@link InvalidRequestException} (client fault)
57
57
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -70,13 +70,13 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
70
70
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
71
71
  *
72
72
  * @throws {@link InternalServiceError} (server fault)
73
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
73
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
74
74
  *
75
75
  * @throws {@link InvalidRequestException} (client fault)
76
76
  * <p>This exception is thrown when the client submits a malformed request.</p>
77
77
  *
78
78
  * @throws {@link ResourceExistsException} (client fault)
79
- * <p>The requested resource does not exist.</p>
79
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
80
80
  *
81
81
  * @throws {@link ResourceNotFoundException} (client fault)
82
82
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -52,7 +52,7 @@ export interface UpdateHostKeyCommandOutput extends UpdateHostKeyResponse, __Met
52
52
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
53
53
  *
54
54
  * @throws {@link InternalServiceError} (server fault)
55
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
55
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
56
56
  *
57
57
  * @throws {@link InvalidRequestException} (client fault)
58
58
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -53,7 +53,7 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
53
53
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
54
54
  *
55
55
  * @throws {@link InternalServiceError} (server fault)
56
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
56
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
57
57
  *
58
58
  * @throws {@link InvalidRequestException} (client fault)
59
59
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -114,13 +114,13 @@ export interface UpdateServerCommandOutput extends UpdateServerResponse, __Metad
114
114
  * <code>VpcEndpointID</code> is not in the available state.</p>
115
115
  *
116
116
  * @throws {@link InternalServiceError} (server fault)
117
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
117
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
118
118
  *
119
119
  * @throws {@link InvalidRequestException} (client fault)
120
120
  * <p>This exception is thrown when the client submits a malformed request.</p>
121
121
  *
122
122
  * @throws {@link ResourceExistsException} (client fault)
123
- * <p>The requested resource does not exist.</p>
123
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
124
124
  *
125
125
  * @throws {@link ResourceNotFoundException} (client fault)
126
126
  * <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
@@ -71,7 +71,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
71
71
  * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
72
72
  *
73
73
  * @throws {@link InternalServiceError} (server fault)
74
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
74
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
75
75
  *
76
76
  * @throws {@link InvalidRequestException} (client fault)
77
77
  * <p>This exception is thrown when the client submits a malformed request.</p>
@@ -456,14 +456,25 @@ export interface CreateAccessRequest {
456
456
  * @public
457
457
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
458
458
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
459
+ * <note>
460
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
461
+ * </note>
459
462
  */
460
463
  HomeDirectory?: string;
461
464
  /**
462
465
  * @public
463
466
  * <p>The type of landing directory (folder) that you want your users' home directory to be when they log in to the server.
464
- * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer
465
- * protocol clients. If you set it <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
467
+ * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer
468
+ * protocol clients. If you set it to <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
466
469
  * how you want to make Amazon S3 or Amazon EFS paths visible to your users.</p>
470
+ * <note>
471
+ * <p>If <code>HomeDirectoryType</code> is <code>LOGICAL</code>, you must provide mappings,
472
+ * using the <code>HomeDirectoryMappings</code> parameter. If, on the other hand,
473
+ * <code>HomeDirectoryType</code> is <code>PATH</code>, you provide an absolute path
474
+ * using the <code>HomeDirectory</code> parameter. You cannot have both
475
+ * <code>HomeDirectory</code> and <code>HomeDirectoryMappings</code> in your
476
+ * template.</p>
477
+ * </note>
467
478
  */
468
479
  HomeDirectoryType?: HomeDirectoryType | string;
469
480
  /**
@@ -562,7 +573,7 @@ export interface CreateAccessResponse {
562
573
  }
563
574
  /**
564
575
  * @public
565
- * <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
576
+ * <p>This exception is thrown when an error occurs in the Transfer Family service.</p>
566
577
  */
567
578
  export declare class InternalServiceError extends __BaseException {
568
579
  readonly name: "InternalServiceError";
@@ -588,7 +599,7 @@ export declare class InvalidRequestException extends __BaseException {
588
599
  }
589
600
  /**
590
601
  * @public
591
- * <p>The requested resource does not exist.</p>
602
+ * <p>The requested resource does not exist, or exists in a region other than the one specified for the command.</p>
592
603
  */
593
604
  export declare class ResourceExistsException extends __BaseException {
594
605
  readonly name: "ResourceExistsException";
@@ -765,8 +776,9 @@ export interface SftpConnectorConfig {
765
776
  * @public
766
777
  * <p>The public portion of the host key, or keys, that are used to authenticate the user to the external server to which you are connecting. You can use the <code>ssh-keyscan</code> command against the SFTP server to retrieve the necessary key.</p>
767
778
  * <p>The three standard SSH public key format elements are <code><key type></code>,
768
- * <code><body base64></code>, and an optional <code><comment></code>, with spaces
769
- * between each element.</p>
779
+ * <code><body base64></code>, and an optional <code><comment></code>, with spaces
780
+ * between each element. Specify only the <code><key type></code> and <code><body
781
+ * base64></code>: do not enter the <code><comment></code> portion of the key.</p>
770
782
  * <p>For the trusted host key, Transfer Family accepts RSA and ECDSA keys.</p>
771
783
  * <ul>
772
784
  * <li>
@@ -1553,14 +1565,25 @@ export interface CreateUserRequest {
1553
1565
  * @public
1554
1566
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
1555
1567
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
1568
+ * <note>
1569
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
1570
+ * </note>
1556
1571
  */
1557
1572
  HomeDirectory?: string;
1558
1573
  /**
1559
1574
  * @public
1560
1575
  * <p>The type of landing directory (folder) that you want your users' home directory to be when they log in to the server.
1561
- * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer
1562
- * protocol clients. If you set it <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
1576
+ * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer
1577
+ * protocol clients. If you set it to <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
1563
1578
  * how you want to make Amazon S3 or Amazon EFS paths visible to your users.</p>
1579
+ * <note>
1580
+ * <p>If <code>HomeDirectoryType</code> is <code>LOGICAL</code>, you must provide mappings,
1581
+ * using the <code>HomeDirectoryMappings</code> parameter. If, on the other hand,
1582
+ * <code>HomeDirectoryType</code> is <code>PATH</code>, you provide an absolute path
1583
+ * using the <code>HomeDirectory</code> parameter. You cannot have both
1584
+ * <code>HomeDirectory</code> and <code>HomeDirectoryMappings</code> in your
1585
+ * template.</p>
1586
+ * </note>
1564
1587
  */
1565
1588
  HomeDirectoryType?: HomeDirectoryType | string;
1566
1589
  /**
@@ -2266,6 +2289,9 @@ export interface DescribedAccess {
2266
2289
  * @public
2267
2290
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
2268
2291
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
2292
+ * <note>
2293
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
2294
+ * </note>
2269
2295
  */
2270
2296
  HomeDirectory?: string;
2271
2297
  /**
@@ -2287,9 +2313,17 @@ export interface DescribedAccess {
2287
2313
  /**
2288
2314
  * @public
2289
2315
  * <p>The type of landing directory (folder) that you want your users' home directory to be when they log in to the server.
2290
- * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer
2291
- * protocol clients. If you set it <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
2316
+ * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer
2317
+ * protocol clients. If you set it to <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
2292
2318
  * how you want to make Amazon S3 or Amazon EFS paths visible to your users.</p>
2319
+ * <note>
2320
+ * <p>If <code>HomeDirectoryType</code> is <code>LOGICAL</code>, you must provide mappings,
2321
+ * using the <code>HomeDirectoryMappings</code> parameter. If, on the other hand,
2322
+ * <code>HomeDirectoryType</code> is <code>PATH</code>, you provide an absolute path
2323
+ * using the <code>HomeDirectory</code> parameter. You cannot have both
2324
+ * <code>HomeDirectory</code> and <code>HomeDirectoryMappings</code> in your
2325
+ * template.</p>
2326
+ * </note>
2293
2327
  */
2294
2328
  HomeDirectoryType?: HomeDirectoryType | string;
2295
2329
  /**
@@ -3404,6 +3438,9 @@ export interface DescribedUser {
3404
3438
  * @public
3405
3439
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
3406
3440
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
3441
+ * <note>
3442
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
3443
+ * </note>
3407
3444
  */
3408
3445
  HomeDirectory?: string;
3409
3446
  /**
@@ -3425,9 +3462,17 @@ export interface DescribedUser {
3425
3462
  /**
3426
3463
  * @public
3427
3464
  * <p>The type of landing directory (folder) that you want your users' home directory to be when they log in to the server.
3428
- * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer
3429
- * protocol clients. If you set it <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
3465
+ * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer
3466
+ * protocol clients. If you set it to <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
3430
3467
  * how you want to make Amazon S3 or Amazon EFS paths visible to your users.</p>
3468
+ * <note>
3469
+ * <p>If <code>HomeDirectoryType</code> is <code>LOGICAL</code>, you must provide mappings,
3470
+ * using the <code>HomeDirectoryMappings</code> parameter. If, on the other hand,
3471
+ * <code>HomeDirectoryType</code> is <code>PATH</code>, you provide an absolute path
3472
+ * using the <code>HomeDirectory</code> parameter. You cannot have both
3473
+ * <code>HomeDirectory</code> and <code>HomeDirectoryMappings</code> in your
3474
+ * template.</p>
3475
+ * </note>
3431
3476
  */
3432
3477
  HomeDirectoryType?: HomeDirectoryType | string;
3433
3478
  /**
@@ -3882,14 +3927,25 @@ export interface ListedAccess {
3882
3927
  * @public
3883
3928
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
3884
3929
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
3930
+ * <note>
3931
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
3932
+ * </note>
3885
3933
  */
3886
3934
  HomeDirectory?: string;
3887
3935
  /**
3888
3936
  * @public
3889
3937
  * <p>The type of landing directory (folder) that you want your users' home directory to be when they log in to the server.
3890
- * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer
3891
- * protocol clients. If you set it <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
3938
+ * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer
3939
+ * protocol clients. If you set it to <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
3892
3940
  * how you want to make Amazon S3 or Amazon EFS paths visible to your users.</p>
3941
+ * <note>
3942
+ * <p>If <code>HomeDirectoryType</code> is <code>LOGICAL</code>, you must provide mappings,
3943
+ * using the <code>HomeDirectoryMappings</code> parameter. If, on the other hand,
3944
+ * <code>HomeDirectoryType</code> is <code>PATH</code>, you provide an absolute path
3945
+ * using the <code>HomeDirectory</code> parameter. You cannot have both
3946
+ * <code>HomeDirectory</code> and <code>HomeDirectoryMappings</code> in your
3947
+ * template.</p>
3948
+ * </note>
3893
3949
  */
3894
3950
  HomeDirectoryType?: HomeDirectoryType | string;
3895
3951
  /**
@@ -4365,14 +4421,25 @@ export interface ListedUser {
4365
4421
  * @public
4366
4422
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
4367
4423
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
4424
+ * <note>
4425
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
4426
+ * </note>
4368
4427
  */
4369
4428
  HomeDirectory?: string;
4370
4429
  /**
4371
4430
  * @public
4372
4431
  * <p>The type of landing directory (folder) that you want your users' home directory to be when they log in to the server.
4373
- * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer
4374
- * protocol clients. If you set it <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
4432
+ * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer
4433
+ * protocol clients. If you set it to <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
4375
4434
  * how you want to make Amazon S3 or Amazon EFS paths visible to your users.</p>
4435
+ * <note>
4436
+ * <p>If <code>HomeDirectoryType</code> is <code>LOGICAL</code>, you must provide mappings,
4437
+ * using the <code>HomeDirectoryMappings</code> parameter. If, on the other hand,
4438
+ * <code>HomeDirectoryType</code> is <code>PATH</code>, you provide an absolute path
4439
+ * using the <code>HomeDirectory</code> parameter. You cannot have both
4440
+ * <code>HomeDirectory</code> and <code>HomeDirectoryMappings</code> in your
4441
+ * template.</p>
4442
+ * </note>
4376
4443
  */
4377
4444
  HomeDirectoryType?: HomeDirectoryType | string;
4378
4445
  /**
@@ -4701,9 +4768,9 @@ export interface ListUsersRequest {
4701
4768
  MaxResults?: number;
4702
4769
  /**
4703
4770
  * @public
4704
- * <p>When you can get additional results from the <code>ListUsers</code> call, a
4705
- * <code>NextToken</code> parameter is returned in the output. You can then pass in a
4706
- * subsequent command to the <code>NextToken</code> parameter to continue listing additional
4771
+ * <p>If there are additional results from the <code>ListUsers</code> call, a
4772
+ * <code>NextToken</code> parameter is returned in the output. You can then pass
4773
+ * the <code>NextToken</code> to a subsequent <code>ListUsers</code> command, to continue listing additional
4707
4774
  * users.</p>
4708
4775
  */
4709
4776
  NextToken?: string;
@@ -4920,26 +4987,21 @@ export interface TestConnectionResponse {
4920
4987
  /**
4921
4988
  * @public
4922
4989
  * <p>Returns <code>Connection succeeded</code> if the test is successful. Or, returns a descriptive error message
4923
- * if the test fails. The following list provides the details for some error messages and troubleshooting steps for each.</p>
4990
+ * if the test fails. The following list provides troubleshooting details, depending on the error message that you receive.</p>
4924
4991
  * <ul>
4925
4992
  * <li>
4926
- * <p>
4927
- * <b>Unable to access secrets manager</b>: Verify that your secret name aligns with the one in
4993
+ * <p>Verify that your secret name aligns with the one in
4928
4994
  * Transfer Role permissions.</p>
4929
4995
  * </li>
4930
4996
  * <li>
4931
- * <p>
4932
- * <b>Unknown Host/Connection failed</b>: Verify the server URL in the connector
4933
- * configuration , and
4934
- * verify that the login credentials work successfully outside of the connector.</p>
4997
+ * <p>Verify the server URL in the connector
4998
+ * configuration , and verify that the login credentials work successfully outside of the connector.</p>
4935
4999
  * </li>
4936
5000
  * <li>
4937
- * <p>
4938
- * <b>Private key not found</b>: Verify that the secret exists and is formatted correctly.</p>
5001
+ * <p>Verify that the secret exists and is formatted correctly.</p>
4939
5002
  * </li>
4940
5003
  * <li>
4941
- * <p>
4942
- * <b>Invalid trusted host keys</b>: Verify that the trusted host key in the connector
5004
+ * <p>Verify that the trusted host key in the connector
4943
5005
  * configuration matches the <code>ssh-keyscan</code> output.</p>
4944
5006
  * </li>
4945
5007
  * </ul>
@@ -5045,14 +5107,25 @@ export interface UpdateAccessRequest {
5045
5107
  * @public
5046
5108
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
5047
5109
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
5110
+ * <note>
5111
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
5112
+ * </note>
5048
5113
  */
5049
5114
  HomeDirectory?: string;
5050
5115
  /**
5051
5116
  * @public
5052
5117
  * <p>The type of landing directory (folder) that you want your users' home directory to be when they log in to the server.
5053
- * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer
5054
- * protocol clients. If you set it <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
5118
+ * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer
5119
+ * protocol clients. If you set it to <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
5055
5120
  * how you want to make Amazon S3 or Amazon EFS paths visible to your users.</p>
5121
+ * <note>
5122
+ * <p>If <code>HomeDirectoryType</code> is <code>LOGICAL</code>, you must provide mappings,
5123
+ * using the <code>HomeDirectoryMappings</code> parameter. If, on the other hand,
5124
+ * <code>HomeDirectoryType</code> is <code>PATH</code>, you provide an absolute path
5125
+ * using the <code>HomeDirectory</code> parameter. You cannot have both
5126
+ * <code>HomeDirectory</code> and <code>HomeDirectoryMappings</code> in your
5127
+ * template.</p>
5128
+ * </note>
5056
5129
  */
5057
5130
  HomeDirectoryType?: HomeDirectoryType | string;
5058
5131
  /**
@@ -5673,14 +5746,25 @@ export interface UpdateUserRequest {
5673
5746
  * @public
5674
5747
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
5675
5748
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
5749
+ * <note>
5750
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
5751
+ * </note>
5676
5752
  */
5677
5753
  HomeDirectory?: string;
5678
5754
  /**
5679
5755
  * @public
5680
5756
  * <p>The type of landing directory (folder) that you want your users' home directory to be when they log in to the server.
5681
- * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or EFS paths as is in their file transfer
5682
- * protocol clients. If you set it <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
5757
+ * If you set it to <code>PATH</code>, the user will see the absolute Amazon S3 bucket or Amazon EFS path as is in their file transfer
5758
+ * protocol clients. If you set it to <code>LOGICAL</code>, you need to provide mappings in the <code>HomeDirectoryMappings</code> for
5683
5759
  * how you want to make Amazon S3 or Amazon EFS paths visible to your users.</p>
5760
+ * <note>
5761
+ * <p>If <code>HomeDirectoryType</code> is <code>LOGICAL</code>, you must provide mappings,
5762
+ * using the <code>HomeDirectoryMappings</code> parameter. If, on the other hand,
5763
+ * <code>HomeDirectoryType</code> is <code>PATH</code>, you provide an absolute path
5764
+ * using the <code>HomeDirectory</code> parameter. You cannot have both
5765
+ * <code>HomeDirectory</code> and <code>HomeDirectoryMappings</code> in your
5766
+ * template.</p>
5767
+ * </note>
5684
5768
  */
5685
5769
  HomeDirectoryType?: HomeDirectoryType | string;
5686
5770
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transfer",
3
3
  "description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
4
- "version": "3.418.0",
4
+ "version": "3.423.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,8 +21,8 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.418.0",
25
- "@aws-sdk/credential-provider-node": "3.418.0",
24
+ "@aws-sdk/client-sts": "3.423.0",
25
+ "@aws-sdk/credential-provider-node": "3.423.0",
26
26
  "@aws-sdk/middleware-host-header": "3.418.0",
27
27
  "@aws-sdk/middleware-logger": "3.418.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.418.0",