Fetch a List of AWS Connectors for an Account ID

Gets a list of AWS connectors for an account ID to help you create a registry.

GET/v1.3/registry/aws/connectors/{accountId}

Input ParametersInput Parameters

Parameter

Mandatory/Optional

Data type

Description

accountId

Mandatory

string

Provide the AWS account Id to get a list of connectors.

SampleSample

API request

    curl -X GET 
"<qualys_base_url>/csapi/v1.3/registry/aws/connectors/123456789012" --header "Authorization: Bearer <token>"
    

Response

    [
    {
        "name": "AWSC1",
        "arn": "arn:aws:iam::123456789012:role/abcd",
        "description": "AWS connector 1""accountType": "Global"
    },
    {
        "name": "AWSC2",
        "arn": "arn:aws:iam::123456789012:role/testabcd",
        "description": "AWS connector 2""accountType": "Global"
    }
]