Skip to main content

managed_thing_certificates

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

Overview

Namemanaged_thing_certificates
TypeResource
Idaws.iot_managed_integrations.managed_thing_certificates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
certificate_pemstringThe PEM-encoded certificate for the managed thing. (pattern: <code>[\s\S]*</code>)
managed_thing_idstringThe identifier of the managed thing. (pattern: <code>[a-zA-Z0-9:_-]*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_managed_thing_certificateselectidentifier, regionRetrieves the certificate PEM for a managed IoT 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
identifierstringThe identifier of the managed thing.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the certificate PEM for a managed IoT thing.

SELECT
certificate_pem,
managed_thing_id
FROM aws.iot_managed_integrations.managed_thing_certificates
WHERE identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
;