code_binding_sources
Creates, updates, deletes, gets or lists a code_binding_sources resource.
Overview
| Name | code_binding_sources |
| Type | Resource |
| Id | aws.schemas.code_binding_sources |
Fields
The following fields are returned by SELECT queries:
- get_code_binding_source
| Name | Datatype | Description |
|---|---|---|
body | string (byte) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_code_binding_source | select | language, registry_name, schema_name, region | schemaVersion | Get 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.
| Name | Datatype | Description |
|---|---|---|
language | string | The language of the code binding. |
region | string | AWS region (default: us-east-1) |
registry_name | string | The name of the registry. |
schema_name | string | The name of the schema. |
schemaVersion | string | Specifying this limits the results to only this schema version. |
SELECT examples
- get_code_binding_source
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 }}'
;