@aws-sdk/client-transfer 3.288.0 → 3.290.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 +30 -30
|
@@ -29,6 +29,20 @@ export interface DescribeWorkflowCommandOutput extends DescribeWorkflowResponse,
|
|
|
29
29
|
* @see {@link DescribeWorkflowCommandOutput} 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 DescribeWorkflowCommand extends $Command<DescribeWorkflowCommandInput, DescribeWorkflowCommandOutput, TransferClientResolvedConfig> {
|
|
34
48
|
readonly input: DescribeWorkflowCommandInput;
|
|
@@ -31,6 +31,20 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
|
|
|
31
31
|
* @see {@link ImportCertificateCommandOutput} 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 ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
42
|
+
* service.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
45
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
34
48
|
*/
|
|
35
49
|
export declare class ImportCertificateCommand extends $Command<ImportCertificateCommandInput, ImportCertificateCommandOutput, TransferClientResolvedConfig> {
|
|
36
50
|
readonly input: ImportCertificateCommandInput;
|
|
@@ -30,6 +30,26 @@ export interface ImportHostKeyCommandOutput extends ImportHostKeyResponse, __Met
|
|
|
30
30
|
* @see {@link ImportHostKeyCommandOutput} 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 ResourceExistsException} (client fault)
|
|
40
|
+
* <p>The requested resource does not exist.</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
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>The request was denied due to request throttling.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
33
53
|
*/
|
|
34
54
|
export declare class ImportHostKeyCommand extends $Command<ImportHostKeyCommandInput, ImportHostKeyCommandOutput, TransferClientResolvedConfig> {
|
|
35
55
|
readonly input: ImportHostKeyCommandInput;
|
|
@@ -33,6 +33,26 @@ export interface ImportSshPublicKeyCommandOutput extends ImportSshPublicKeyRespo
|
|
|
33
33
|
* @see {@link ImportSshPublicKeyCommandOutput} 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 ResourceExistsException} (client fault)
|
|
43
|
+
* <p>The requested resource does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
47
|
+
* service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p>The request was denied due to request throttling.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
36
56
|
*/
|
|
37
57
|
export declare class ImportSshPublicKeyCommand extends $Command<ImportSshPublicKeyCommandInput, ImportSshPublicKeyCommandOutput, TransferClientResolvedConfig> {
|
|
38
58
|
readonly input: ImportSshPublicKeyCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface ListAccessesCommandOutput extends ListAccessesResponse, __Metad
|
|
|
29
29
|
* @see {@link ListAccessesCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
36
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ListAccessesCommand extends $Command<ListAccessesCommandInput, ListAccessesCommandOutput, TransferClientResolvedConfig> {
|
|
34
51
|
readonly input: ListAccessesCommandInput;
|
|
@@ -33,6 +33,23 @@ export interface ListAgreementsCommandOutput extends ListAgreementsResponse, __M
|
|
|
33
33
|
* @see {@link ListAgreementsCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
40
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
43
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
47
|
+
* service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
36
53
|
*/
|
|
37
54
|
export declare class ListAgreementsCommand extends $Command<ListAgreementsCommandInput, ListAgreementsCommandOutput, TransferClientResolvedConfig> {
|
|
38
55
|
readonly input: ListAgreementsCommandInput;
|
|
@@ -33,6 +33,23 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
|
|
|
33
33
|
* @see {@link ListCertificatesCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
40
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
43
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
47
|
+
* service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
36
53
|
*/
|
|
37
54
|
export declare class ListCertificatesCommand extends $Command<ListCertificatesCommandInput, ListCertificatesCommandOutput, TransferClientResolvedConfig> {
|
|
38
55
|
readonly input: ListCertificatesCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
29
29
|
* @see {@link ListConnectorsCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
36
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, TransferClientResolvedConfig> {
|
|
34
51
|
readonly input: ListConnectorsCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M
|
|
|
29
29
|
* @see {@link ListExecutionsCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
36
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ListExecutionsCommand extends $Command<ListExecutionsCommandInput, ListExecutionsCommandOutput, TransferClientResolvedConfig> {
|
|
34
51
|
readonly input: ListExecutionsCommandInput;
|
|
@@ -30,6 +30,23 @@ export interface ListHostKeysCommandOutput extends ListHostKeysResponse, __Metad
|
|
|
30
30
|
* @see {@link ListHostKeysCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
37
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ListHostKeysCommand extends $Command<ListHostKeysCommandInput, ListHostKeysCommandOutput, TransferClientResolvedConfig> {
|
|
35
52
|
readonly input: ListHostKeysCommandInput;
|
|
@@ -32,6 +32,23 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad
|
|
|
32
32
|
* @see {@link ListProfilesCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
39
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
46
|
+
* service.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
35
52
|
*/
|
|
36
53
|
export declare class ListProfilesCommand extends $Command<ListProfilesCommandInput, ListProfilesCommandOutput, TransferClientResolvedConfig> {
|
|
37
54
|
readonly input: ListProfilesCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
|
|
|
30
30
|
* @see {@link ListSecurityPoliciesCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
37
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class ListSecurityPoliciesCommand extends $Command<ListSecurityPoliciesCommandInput, ListSecurityPoliciesCommandOutput, TransferClientResolvedConfig> {
|
|
35
48
|
readonly input: ListSecurityPoliciesCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface ListServersCommandOutput extends ListServersResponse, __Metadat
|
|
|
30
30
|
* @see {@link ListServersCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
37
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class ListServersCommand extends $Command<ListServersCommandInput, ListServersCommandOutput, TransferClientResolvedConfig> {
|
|
35
48
|
readonly input: ListServersCommandInput;
|
|
@@ -30,6 +30,19 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
30
30
|
* @see {@link ListTagsForResourceCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
37
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ServiceUnavailableException} (server fault)
|
|
43
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
33
46
|
*/
|
|
34
47
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TransferClientResolvedConfig> {
|
|
35
48
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -30,6 +30,23 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
|
|
|
30
30
|
* @see {@link ListUsersCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
37
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ListUsersCommand extends $Command<ListUsersCommandInput, ListUsersCommandOutput, TransferClientResolvedConfig> {
|
|
35
52
|
readonly input: ListUsersCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
|
|
|
29
29
|
* @see {@link ListWorkflowsCommandOutput} 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 InvalidNextTokenException} (client fault)
|
|
36
|
+
* <p>The <code>NextToken</code> parameter that was passed is invalid.</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 ServiceUnavailableException} (server fault)
|
|
42
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListWorkflowsCommand extends $Command<ListWorkflowsCommandInput, ListWorkflowsCommandOutput, TransferClientResolvedConfig> {
|
|
34
47
|
readonly input: ListWorkflowsCommandInput;
|
|
@@ -33,6 +33,26 @@ export interface SendWorkflowStepStateCommandOutput extends SendWorkflowStepStat
|
|
|
33
33
|
* @see {@link SendWorkflowStepStateCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
37
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
40
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
43
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
47
|
+
* service.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
50
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p>The request was denied due to request throttling.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
36
56
|
*/
|
|
37
57
|
export declare class SendWorkflowStepStateCommand extends $Command<SendWorkflowStepStateCommandInput, SendWorkflowStepStateCommandOutput, TransferClientResolvedConfig> {
|
|
38
58
|
readonly input: SendWorkflowStepStateCommandInput;
|
|
@@ -30,6 +30,23 @@ export interface StartFileTransferCommandOutput extends StartFileTransferRespons
|
|
|
30
30
|
* @see {@link StartFileTransferCommandOutput} 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
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
33
50
|
*/
|
|
34
51
|
export declare class StartFileTransferCommand extends $Command<StartFileTransferCommandInput, StartFileTransferCommandOutput, TransferClientResolvedConfig> {
|
|
35
52
|
readonly input: StartFileTransferCommandInput;
|
|
@@ -35,6 +35,23 @@ export interface StartServerCommandOutput extends __MetadataBearer {
|
|
|
35
35
|
* @see {@link StartServerCommandOutput} 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 ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
46
|
+
* service.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
52
|
+
* <p>The request was denied due to request throttling.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
38
55
|
*/
|
|
39
56
|
export declare class StartServerCommand extends $Command<StartServerCommandInput, StartServerCommandOutput, TransferClientResolvedConfig> {
|
|
40
57
|
readonly input: StartServerCommandInput;
|
|
@@ -40,6 +40,23 @@ export interface StopServerCommandOutput extends __MetadataBearer {
|
|
|
40
40
|
* @see {@link StopServerCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
44
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
47
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
51
|
+
* service.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
57
|
+
* <p>The request was denied due to request throttling.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
43
60
|
*/
|
|
44
61
|
export declare class StopServerCommand extends $Command<StopServerCommandInput, StopServerCommandOutput, TransferClientResolvedConfig> {
|
|
45
62
|
readonly input: StopServerCommandInput;
|
|
@@ -31,6 +31,20 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link TagResourceCommandOutput} 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 ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
42
|
+
* service.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
45
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
34
48
|
*/
|
|
35
49
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TransferClientResolvedConfig> {
|
|
36
50
|
readonly input: TagResourceCommandInput;
|
|
@@ -67,6 +67,20 @@ export interface TestIdentityProviderCommandOutput extends TestIdentityProviderR
|
|
|
67
67
|
* @see {@link TestIdentityProviderCommandOutput} for command's `response` shape.
|
|
68
68
|
* @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape.
|
|
69
69
|
*
|
|
70
|
+
* @throws {@link InternalServiceError} (server fault)
|
|
71
|
+
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
74
|
+
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
77
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
78
|
+
* service.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
81
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
82
|
+
*
|
|
83
|
+
*
|
|
70
84
|
*/
|
|
71
85
|
export declare class TestIdentityProviderCommand extends $Command<TestIdentityProviderCommandInput, TestIdentityProviderCommandOutput, TransferClientResolvedConfig> {
|
|
72
86
|
readonly input: TestIdentityProviderCommandInput;
|
|
@@ -31,6 +31,20 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* @see {@link UntagResourceCommandOutput} 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 ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
42
|
+
* service.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
45
|
+
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
34
48
|
*/
|
|
35
49
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TransferClientResolvedConfig> {
|
|
36
50
|
readonly input: UntagResourceCommandInput;
|
|
@@ -30,6 +30,26 @@ export interface UpdateAccessCommandOutput extends UpdateAccessResponse, __Metad
|
|
|
30
30
|
* @see {@link UpdateAccessCommandOutput} 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 ResourceExistsException} (client fault)
|
|
40
|
+
* <p>The requested resource does not exist.</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
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>The request was denied due to request throttling.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
33
53
|
*/
|
|
34
54
|
export declare class UpdateAccessCommand extends $Command<UpdateAccessCommandInput, UpdateAccessCommandOutput, TransferClientResolvedConfig> {
|
|
35
55
|
readonly input: UpdateAccessCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface UpdateAgreementCommandOutput extends UpdateAgreementResponse, _
|
|
|
31
31
|
* @see {@link UpdateAgreementCommandOutput} 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 UpdateAgreementCommand extends $Command<UpdateAgreementCommandInput, UpdateAgreementCommandOutput, TransferClientResolvedConfig> {
|
|
36
56
|
readonly input: UpdateAgreementCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface UpdateCertificateCommandOutput extends UpdateCertificateRespons
|
|
|
29
29
|
* @see {@link UpdateCertificateCommandOutput} 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 UpdateCertificateCommand extends $Command<UpdateCertificateCommandInput, UpdateCertificateCommandOutput, TransferClientResolvedConfig> {
|
|
34
51
|
readonly input: UpdateCertificateCommandInput;
|