Skip to main content

outgoing_certificates

Creates, updates, deletes, gets or lists an outgoing_certificates resource.

Overview

Nameoutgoing_certificates
TypeResource
Idaws.iot.outgoing_certificates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
certificate_arnstringThe certificate ARN.
certificate_idstringThe certificate ID. (pattern: <code>(0x)?[a-fA-F0-9]+</code>)
creation_datestring (date-time)The certificate creation date.
transfer_datestring (date-time)The date the transfer was initiated.
transfer_messagestringThe transfer message. (pattern: <code>[\s\S]*</code>)
transferred_tostringThe Amazon Web Services account to which the transfer was made. (pattern: <code>[0-9]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_outgoing_certificatesselectregionpageSize, marker, isAscendingOrderLists certificates that are being transferred but not yet accepted. Requires permission to access the ListOutgoingCertificates action.

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
regionstringAWS region (default: us-east-1)
isAscendingOrderbooleanSpecifies the order for results. If True, the results are returned in ascending order, based on the creation date.
markerstringThe marker for the next set of results.
pageSizeintegerThe result page size.

SELECT examples

Lists certificates that are being transferred but not yet accepted. Requires permission to access the ListOutgoingCertificates action.

SELECT
certificate_arn,
certificate_id,
creation_date,
transfer_date,
transfer_message,
transferred_to
FROM aws.iot.outgoing_certificates
WHERE region = '{{ region }}' -- required
AND pageSize = '{{ pageSize }}'
AND marker = '{{ marker }}'
AND isAscendingOrder = '{{ isAscendingOrder }}'
;