Skip to main content

discovered_schemas

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

Overview

Namediscovered_schemas
TypeResource
Idaws.schemas.discovered_schemas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contentstringThe source of the schema definition.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_discovered_schemaselectregionGet the discovered schema that was generated based on sampled events.

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

Get the discovered schema that was generated based on sampled events.

SELECT
content
FROM aws.schemas.discovered_schemas
WHERE region = '{{ region }}' -- required
;