Skip to main content

code_binding_sources

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

Overview

Namecode_binding_sources
TypeResource
Idaws.schemas.code_binding_sources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bodystring (byte)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_code_binding_sourceselectlanguage, registry_name, schema_name, regionschemaVersionGet the code binding source URI.

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
languagestringThe language of the code binding.
regionstringAWS region (default: us-east-1)
registry_namestringThe name of the registry.
schema_namestringThe name of the schema.
schemaVersionstringSpecifying this limits the results to only this schema version.

SELECT examples

Get the code binding source URI.

SELECT
body
FROM aws.schemas.code_binding_sources
WHERE language = '{{ language }}' -- required
AND registry_name = '{{ registry_name }}' -- required
AND schema_name = '{{ schema_name }}' -- required
AND region = '{{ region }}' -- required
AND schemaVersion = '{{ schemaVersion }}'
;