Skip to main content

runtime_log_configurations

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

Overview

Nameruntime_log_configurations
TypeResource
Idaws.iot_managed_integrations.runtime_log_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
managed_thing_idstringThe id for a managed thing. (pattern: <code>[a-zA-Z0-9:_-]*</code>)
runtime_log_configurationsobjectThe runtime log configuration for a managed thing.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_runtime_log_configurationselectmanaged_thing_id, regionGet the runtime log configuration for a specific managed thing.
put_runtime_log_configurationreplacemanaged_thing_id, region, RuntimeLogConfigurationsSet 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.

NameDatatypeDescription
managed_thing_idstringThe id for a managed thing.
regionstringAWS region (default: us-east-1)

SELECT examples

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

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;