Skip to main content

security_hub_v2s

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

Overview

Namesecurity_hub_v2s
TypeResource
Idaws.securityhub.security_hub_v2s

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
featuresobjectA map of opt-in features and their current status and metadata for the account in the current Region.
hub_v2_arnstringThe ARN of the service resource. (pattern: <code>.\S.</code>)
subscribed_atstringThe date and time when the service was enabled in the account.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_security_hub_v2selectregionReturns details about the service resource in your 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)

SELECT examples

Returns details about the service resource in your account.

SELECT
features,
hub_v2_arn,
subscribed_at
FROM aws.securityhub.security_hub_v2s
WHERE region = '{{ region }}' -- required
;