Skip to main content

connectors_v2s

Creates, updates, deletes, gets or lists a connectors_v2s resource.

Overview

Nameconnectors_v2s
TypeResource
Idaws.securityhub.connectors_v2s

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
connectorsarrayAn array of connectorV2 summaries.
next_tokenstringThe pagination token to use to request the next page of results. Otherwise, this parameter is null.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_connectors_v2selectregionNextToken, MaxResults, ProviderName, ConnectorStatus, EnablementStatusGrants permission to retrieve a list of connectorsV2 and their metadata for the calling account.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
ConnectorStatusstringThe status for the connectorV2.
EnablementStatusstringThe enablement status to filter connectors by.
MaxResultsintegerThe maximum number of results to be returned.
NextTokenstringThe pagination token per the Amazon Web Services Pagination standard
ProviderNamestringThe name of the third-party provider.

SELECT examples

Grants permission to retrieve a list of connectorsV2 and their metadata for the calling account.

SELECT
connectors,
next_token
FROM aws.securityhub.connectors_v2s
WHERE region = '{{ region }}' -- required
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
AND ProviderName = '{{ ProviderName }}'
AND ConnectorStatus = '{{ ConnectorStatus }}'
AND EnablementStatus = '{{ EnablementStatus }}'
;