outgoing_certificates
Creates, updates, deletes, gets or lists an outgoing_certificates resource.
Overview
| Name | outgoing_certificates |
| Type | Resource |
| Id | aws.iot.outgoing_certificates |
Fields
The following fields are returned by SELECT queries:
- list_outgoing_certificates
| Name | Datatype | Description |
|---|---|---|
certificate_arn | string | The certificate ARN. |
certificate_id | string | The certificate ID. (pattern: <code>(0x)?[a-fA-F0-9]+</code>) |
creation_date | string (date-time) | The certificate creation date. |
transfer_date | string (date-time) | The date the transfer was initiated. |
transfer_message | string | The transfer message. (pattern: <code>[\s\S]*</code>) |
transferred_to | string | The Amazon Web Services account to which the transfer was made. (pattern: <code>[0-9]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_outgoing_certificates | select | region | pageSize, marker, isAscendingOrder | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
isAscendingOrder | boolean | Specifies the order for results. If True, the results are returned in ascending order, based on the creation date. |
marker | string | The marker for the next set of results. |
pageSize | integer | The result page size. |
SELECT examples
- list_outgoing_certificates
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 }}'
;