runtime_log_configurations
Creates, updates, deletes, gets or lists a runtime_log_configurations resource.
Overview
| Name | runtime_log_configurations |
| Type | Resource |
| Id | aws.iot_managed_integrations.runtime_log_configurations |
Fields
The following fields are returned by SELECT queries:
- get_runtime_log_configuration
| Name | Datatype | Description |
|---|---|---|
managed_thing_id | string | The id for a managed thing. (pattern: <code>[a-zA-Z0-9:_-]*</code>) |
runtime_log_configurations | object | The runtime log configuration for a managed thing. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_runtime_log_configuration | select | managed_thing_id, region | Get the runtime log configuration for a specific managed thing. | |
put_runtime_log_configuration | replace | managed_thing_id, region, RuntimeLogConfigurations | Set the runtime log configuration for a specific managed thing. |
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 |
|---|---|---|
managed_thing_id | string | The id for a managed thing. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_runtime_log_configuration
Get the runtime log configuration for a specific managed thing.
SELECT
managed_thing_id,
runtime_log_configurations
FROM aws.iot_managed_integrations.runtime_log_configurations
WHERE managed_thing_id = '{{ managed_thing_id }}' -- required
AND region = '{{ region }}' -- required
;
REPLACE examples
- put_runtime_log_configuration
Set the runtime log configuration for a specific managed thing.
REPLACE aws.iot_managed_integrations.runtime_log_configurations
SET
RuntimeLogConfigurations = '{{ RuntimeLogConfigurations }}'
WHERE
managed_thing_id = '{{ managed_thing_id }}' --required
AND region = '{{ region }}' --required
AND RuntimeLogConfigurations = '{{ RuntimeLogConfigurations }}' --required;