@aws-sdk/client-transfer 3.289.0 → 3.292.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/commands/CreateAccessCommand.d.ts +17 -0
- package/dist-types/commands/CreateAgreementCommand.d.ts +20 -0
- package/dist-types/commands/CreateConnectorCommand.d.ts +20 -0
- package/dist-types/commands/CreateProfileCommand.d.ts +17 -0
- package/dist-types/commands/CreateServerCommand.d.ts +23 -0
- package/dist-types/commands/CreateUserCommand.d.ts +17 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +19 -0
- package/dist-types/commands/DeleteAccessCommand.d.ts +14 -0
- package/dist-types/commands/DeleteAgreementCommand.d.ts +14 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +14 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +14 -0
- package/dist-types/commands/DeleteHostKeyCommand.d.ts +17 -0
- package/dist-types/commands/DeleteProfileCommand.d.ts +14 -0
- package/dist-types/commands/DeleteServerCommand.d.ts +17 -0
- package/dist-types/commands/DeleteSshPublicKeyCommand.d.ts +17 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +14 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +17 -0
- package/dist-types/commands/DescribeAccessCommand.d.ts +14 -0
- package/dist-types/commands/DescribeAgreementCommand.d.ts +14 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +14 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +14 -0
- package/dist-types/commands/DescribeExecutionCommand.d.ts +14 -0
- package/dist-types/commands/DescribeHostKeyCommand.d.ts +14 -0
- package/dist-types/commands/DescribeProfileCommand.d.ts +14 -0
- package/dist-types/commands/DescribeSecurityPolicyCommand.d.ts +14 -0
- package/dist-types/commands/DescribeServerCommand.d.ts +14 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +14 -0
- package/dist-types/commands/DescribeWorkflowCommand.d.ts +14 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +14 -0
- package/dist-types/commands/ImportHostKeyCommand.d.ts +20 -0
- package/dist-types/commands/ImportSshPublicKeyCommand.d.ts +20 -0
- package/dist-types/commands/ListAccessesCommand.d.ts +17 -0
- package/dist-types/commands/ListAgreementsCommand.d.ts +17 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +17 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +17 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +17 -0
- package/dist-types/commands/ListHostKeysCommand.d.ts +17 -0
- package/dist-types/commands/ListProfilesCommand.d.ts +17 -0
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +13 -0
- package/dist-types/commands/ListServersCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +13 -0
- package/dist-types/commands/ListUsersCommand.d.ts +17 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +13 -0
- package/dist-types/commands/SendWorkflowStepStateCommand.d.ts +20 -0
- package/dist-types/commands/StartFileTransferCommand.d.ts +17 -0
- package/dist-types/commands/StartServerCommand.d.ts +17 -0
- package/dist-types/commands/StopServerCommand.d.ts +17 -0
- package/dist-types/commands/TagResourceCommand.d.ts +14 -0
- package/dist-types/commands/TestIdentityProviderCommand.d.ts +14 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +14 -0
- package/dist-types/commands/UpdateAccessCommand.d.ts +20 -0
- package/dist-types/commands/UpdateAgreementCommand.d.ts +20 -0
- package/dist-types/commands/UpdateCertificateCommand.d.ts +17 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +20 -0
- package/dist-types/commands/UpdateHostKeyCommand.d.ts +17 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +17 -0
- package/dist-types/commands/UpdateServerCommand.d.ts +28 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +17 -0
- package/package.json +36 -41
|
@@ -34,6 +34,23 @@ export interface CreateAccessCommandOutput extends CreateAccessResponse, __Metad
|
|
|
34
34
|
* @see {@link CreateAccessCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
38
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceExistsException} (client fault)
|
|
44
|
+
* <p>The requested resource does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
48
|
+
* service.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
51
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
37
54
|
*/
|
|
38
55
|
export declare class CreateAccessCommand extends $Command<CreateAccessCommandInput, CreateAccessCommandOutput, TransferClientResolvedConfig> {
|
|
39
56
|
readonly input: CreateAccessCommandInput;
|
|
@@ -34,6 +34,26 @@ export interface CreateAgreementCommandOutput extends CreateAgreementResponse, _
|
|
|
34
34
|
* @see {@link CreateAgreementCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
38
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
41
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceExistsException} (client fault)
|
|
44
|
+
* <p>The requested resource does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
48
|
+
* service.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
51
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>The request was denied due to request throttling.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
37
57
|
*/
|
|
38
58
|
export declare class CreateAgreementCommand extends $Command<CreateAgreementCommandInput, CreateAgreementCommandOutput, TransferClientResolvedConfig> {
|
|
39
59
|
readonly input: CreateAgreementCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
31
31
|
* @see {@link CreateConnectorCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
35
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
38
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceExistsException} (client fault)
|
|
41
|
+
* <p>The requested resource does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
45
|
+
* service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class CreateConnectorCommand extends $Command<CreateConnectorCommandInput, CreateConnectorCommandOutput, TransferClientResolvedConfig> {
|
|
36
56
|
readonly input: CreateConnectorCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
|
|
|
29
29
|
* @see {@link CreateProfileCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>The request was denied due to request throttling.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class CreateProfileCommand extends $Command<CreateProfileCommandInput, CreateProfileCommandOutput, TransferClientResolvedConfig> {
|
|
34
51
|
readonly input: CreateProfileCommandInput;
|
|
@@ -32,6 +32,29 @@ export interface CreateServerCommandOutput extends CreateServerResponse, __Metad
|
|
|
32
32
|
* @see {@link CreateServerCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
39
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
42
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceExistsException} (client fault)
|
|
45
|
+
* <p>The requested resource does not exist.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
49
|
+
* service.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
52
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p>The request was denied due to request throttling.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
35
58
|
*/
|
|
36
59
|
export declare class CreateServerCommand extends $Command<CreateServerCommandInput, CreateServerCommandOutput, TransferClientResolvedConfig> {
|
|
37
60
|
readonly input: CreateServerCommandInput;
|
|
@@ -35,6 +35,23 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
|
|
|
35
35
|
* @see {@link CreateUserCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
39
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
42
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceExistsException} (client fault)
|
|
45
|
+
* <p>The requested resource does not exist.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
49
|
+
* service.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
52
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
38
55
|
*/
|
|
39
56
|
export declare class CreateUserCommand extends $Command<CreateUserCommandInput, CreateUserCommandOutput, TransferClientResolvedConfig> {
|
|
40
57
|
readonly input: CreateUserCommandInput;
|
|
@@ -32,6 +32,25 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
32
32
|
* @see {@link CreateWorkflowCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
39
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
42
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceExistsException} (client fault)
|
|
45
|
+
* <p>The requested resource does not exist.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
35
54
|
*/
|
|
36
55
|
export declare class CreateWorkflowCommand extends $Command<CreateWorkflowCommandInput, CreateWorkflowCommandOutput, TransferClientResolvedConfig> {
|
|
37
56
|
readonly input: CreateWorkflowCommandInput;
|
|
@@ -30,6 +30,20 @@ export interface DeleteAccessCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link DeleteAccessCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
34
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
41
|
+
* service.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
44
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
33
47
|
*/
|
|
34
48
|
export declare class DeleteAccessCommand extends $Command<DeleteAccessCommandInput, DeleteAccessCommandOutput, TransferClientResolvedConfig> {
|
|
35
49
|
readonly input: DeleteAccessCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DeleteAgreementCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteAgreementCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DeleteAgreementCommand extends $Command<DeleteAgreementCommandInput, DeleteAgreementCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DeleteAgreementCommandInput;
|
|
@@ -30,6 +30,20 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link DeleteCertificateCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
34
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
41
|
+
* service.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
44
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
33
47
|
*/
|
|
34
48
|
export declare class DeleteCertificateCommand extends $Command<DeleteCertificateCommandInput, DeleteCertificateCommandOutput, TransferClientResolvedConfig> {
|
|
35
49
|
readonly input: DeleteCertificateCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteConnectorCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DeleteConnectorCommand extends $Command<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DeleteConnectorCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface DeleteHostKeyCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteHostKeyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>The request was denied due to request throttling.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class DeleteHostKeyCommand extends $Command<DeleteHostKeyCommandInput, DeleteHostKeyCommandOutput, TransferClientResolvedConfig> {
|
|
34
51
|
readonly input: DeleteHostKeyCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DeleteProfileCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteProfileCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DeleteProfileCommand extends $Command<DeleteProfileCommandInput, DeleteProfileCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DeleteProfileCommandInput;
|
|
@@ -30,6 +30,23 @@ export interface DeleteServerCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* @see {@link DeleteServerCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
37
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
44
|
+
* service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
47
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
33
50
|
*/
|
|
34
51
|
export declare class DeleteServerCommand extends $Command<DeleteServerCommandInput, DeleteServerCommandOutput, TransferClientResolvedConfig> {
|
|
35
52
|
readonly input: DeleteServerCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface DeleteSshPublicKeyCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteSshPublicKeyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>The request was denied due to request throttling.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class DeleteSshPublicKeyCommand extends $Command<DeleteSshPublicKeyCommandInput, DeleteSshPublicKeyCommandOutput, TransferClientResolvedConfig> {
|
|
34
51
|
readonly input: DeleteSshPublicKeyCommandInput;
|
|
@@ -33,6 +33,20 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* @see {@link DeleteUserCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
37
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
44
|
+
* service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
47
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
36
50
|
*/
|
|
37
51
|
export declare class DeleteUserCommand extends $Command<DeleteUserCommandInput, DeleteUserCommandOutput, TransferClientResolvedConfig> {
|
|
38
52
|
readonly input: DeleteUserCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteWorkflowCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
36
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
43
|
+
* service.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
46
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class DeleteWorkflowCommand extends $Command<DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput, TransferClientResolvedConfig> {
|
|
34
51
|
readonly input: DeleteWorkflowCommandInput;
|
|
@@ -33,6 +33,20 @@ export interface DescribeAccessCommandOutput extends DescribeAccessResponse, __M
|
|
|
33
33
|
* @see {@link DescribeAccessCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
37
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
44
|
+
* service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
47
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
36
50
|
*/
|
|
37
51
|
export declare class DescribeAccessCommand extends $Command<DescribeAccessCommandInput, DescribeAccessCommandOutput, TransferClientResolvedConfig> {
|
|
38
52
|
readonly input: DescribeAccessCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DescribeAgreementCommandOutput extends DescribeAgreementRespons
|
|
|
29
29
|
* @see {@link DescribeAgreementCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DescribeAgreementCommand extends $Command<DescribeAgreementCommandInput, DescribeAgreementCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DescribeAgreementCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
|
|
|
29
29
|
* @see {@link DescribeCertificateCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DescribeCertificateCommand extends $Command<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DescribeCertificateCommandInput;
|
|
@@ -30,6 +30,20 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
30
30
|
* @see {@link DescribeConnectorCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
34
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
37
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
41
|
+
* service.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
44
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
45
|
+
*
|
|
46
|
+
*
|
|
33
47
|
*/
|
|
34
48
|
export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, TransferClientResolvedConfig> {
|
|
35
49
|
readonly input: DescribeConnectorCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionRespons
|
|
|
29
29
|
* @see {@link DescribeExecutionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DescribeExecutionCommand extends $Command<DescribeExecutionCommandInput, DescribeExecutionCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DescribeExecutionCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DescribeHostKeyCommandOutput extends DescribeHostKeyResponse, _
|
|
|
29
29
|
* @see {@link DescribeHostKeyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DescribeHostKeyCommand extends $Command<DescribeHostKeyCommandInput, DescribeHostKeyCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DescribeHostKeyCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DescribeProfileCommandOutput extends DescribeProfileResponse, _
|
|
|
29
29
|
* @see {@link DescribeProfileCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
33
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
36
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
40
|
+
* service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DescribeProfileCommand extends $Command<DescribeProfileCommandInput, DescribeProfileCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DescribeProfileCommandInput;
|
|
@@ -32,6 +32,20 @@ export interface DescribeSecurityPolicyCommandOutput extends DescribeSecurityPol
|
|
|
32
32
|
* @see {@link DescribeSecurityPolicyCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
36
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
43
|
+
* service.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
46
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
35
49
|
*/
|
|
36
50
|
export declare class DescribeSecurityPolicyCommand extends $Command<DescribeSecurityPolicyCommandInput, DescribeSecurityPolicyCommandOutput, TransferClientResolvedConfig> {
|
|
37
51
|
readonly input: DescribeSecurityPolicyCommandInput;
|
|
@@ -33,6 +33,20 @@ export interface DescribeServerCommandOutput extends DescribeServerResponse, __M
|
|
|
33
33
|
* @see {@link DescribeServerCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
37
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
40
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
44
|
+
* service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
47
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
36
50
|
*/
|
|
37
51
|
export declare class DescribeServerCommand extends $Command<DescribeServerCommandInput, DescribeServerCommandOutput, TransferClientResolvedConfig> {
|
|
38
52
|
readonly input: DescribeServerCommandInput;
|
|
@@ -32,6 +32,20 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
|
|
|
32
32
|
* @see {@link DescribeUserCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
36
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
39
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
43
|
+
* service.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
46
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
35
49
|
*/
|
|
36
50
|
export declare class DescribeUserCommand extends $Command<DescribeUserCommandInput, DescribeUserCommandOutput, TransferClientResolvedConfig> {
|
|
37
51
|
readonly input: DescribeUserCommandInput;
|