ManagedintegrationsforIoTDeviceManagement / Client / list_connector_destinations

list_connector_destinations

ManagedintegrationsforIoTDeviceManagement.Client.list_connector_destinations(**kwargs)

Lists all connector destinations, with optional filtering by cloud connector ID.

See also: AWS API Documentation

Request Syntax

response = client.list_connector_destinations(
    CloudConnectorId='string',
    NextToken='string',
    MaxResults=123
)
Parameters:
  • CloudConnectorId (string) – The identifier of the cloud connector to filter connector destinations by.

  • NextToken (string) – A token used for pagination of results.

  • MaxResults (integer) – The maximum number of connector destinations to return in a single response.

Return type:

dict

Returns:

Response Syntax

{
    'ConnectorDestinationList': [
        {
            'Name': 'string',
            'Description': 'string',
            'CloudConnectorId': 'string',
            'Id': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • ConnectorDestinationList (list) –

      The list of connector destinations that match the specified criteria.

      • (dict) –

        Structure containing summary information about a connector destination, which defines how a cloud-to-cloud connector connects to a customer’s AWS account.

        • Name (string) –

          The display name of the connector destination.

        • Description (string) –

          A description of the connector destination.

        • CloudConnectorId (string) –

          The identifier of the cloud connector associated with this connector destination.

        • Id (string) –

          The unique identifier of the connector destination.

    • NextToken (string) –

      A token used for pagination of results when there are more connector destinations than can be returned in a single response.

Exceptions