connectors_v2s
Creates, updates, deletes, gets or lists a connectors_v2s resource.
Overview
| Name | connectors_v2s |
| Type | Resource |
| Id | aws.securityhub.connectors_v2s |
Fields
The following fields are returned by SELECT queries:
- list_connectors_v2
| Name | Datatype | Description |
|---|---|---|
connectors | array | An array of connectorV2 summaries. |
next_token | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_connectors_v2 | select | region | NextToken, MaxResults, ProviderName, ConnectorStatus, EnablementStatus | Grants 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
ConnectorStatus | string | The status for the connectorV2. |
EnablementStatus | string | The enablement status to filter connectors by. |
MaxResults | integer | The maximum number of results to be returned. |
NextToken | string | The pagination token per the Amazon Web Services Pagination standard |
ProviderName | string | The name of the third-party provider. |
SELECT examples
- list_connectors_v2
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 }}'
;