Skip to main content

ticket_v2s

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

Overview

Nameticket_v2s
TypeResource
Idaws.securityhub.ticket_v2s

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_ticket_v2insertregion, ConnectorId, FindingMetadataUidGrants permission to create a ticket in the chosen ITSM based on finding information for the provided finding metadata UID.

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)

INSERT examples

Grants permission to create a ticket in the chosen ITSM based on finding information for the provided finding metadata UID.

INSERT INTO aws.securityhub.ticket_v2s (
ConnectorId,
FindingMetadataUid,
ClientToken,
Mode,
region
)
SELECT
'{{ ConnectorId }}' /* required */,
'{{ FindingMetadataUid }}' /* required */,
'{{ ClientToken }}',
'{{ Mode }}',
'{{ region }}'
RETURNING
ticket_id,
ticket_src_url
;