- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
ListConnectorsCommand
Lists the connectors for the specified Region.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { TransferClient, ListConnectorsCommand } from "@aws-sdk/client-transfer"; // ES Modules import
// const { TransferClient, ListConnectorsCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
const client = new TransferClient(config);
const input = { // ListConnectorsRequest
MaxResults: Number("int"),
NextToken: "STRING_VALUE",
};
const command = new ListConnectorsCommand(input);
const response = await client.send(command);
// { // ListConnectorsResponse
// NextToken: "STRING_VALUE",
// Connectors: [ // ListedConnectors // required
// { // ListedConnector
// Arn: "STRING_VALUE",
// ConnectorId: "STRING_VALUE",
// Url: "STRING_VALUE",
// },
// ],
// };
ListConnectorsCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
MaxResults | number | undefined | The maximum number of items to return. |
NextToken | string | undefined | When you can get additional results from the |
ListConnectorsCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Connectors Required | ListedConnector[] | undefined | Returns an array, where each item contains the details of a connector. |
NextToken | string | undefined | Returns a token that you can use to call |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
InternalServiceError | server | This exception is thrown when an error occurs in the Transfer Family service. |
InvalidNextTokenException | client | The |
InvalidRequestException | client | This exception is thrown when the client submits a malformed request. |
ResourceNotFoundException | client | This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family service. |
ServiceUnavailableException | server | The request has failed because the Amazon Web ServicesTransfer Family service is not available. |
TransferServiceException | Base exception class for all service exceptions from Transfer service. |