Skip to main content

signing_platforms

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

Overview

Namesigning_platforms
TypeResource
Idaws.signer.signing_platforms

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
categorystringThe category type of the target signing platform. (AWSIoT)
display_namestringThe display name of the target signing platform.
max_size_in_mbintegerThe maximum size (in MB) of the payload that can be signed by the target platform.
partnerstringA list of partner entities that use the target signing platform.
platform_idstringThe ID of the target signing platform.
revocation_supportedbooleanA flag indicating whether signatures generated for the signing platform can be revoked.
signing_configurationobjectA list of configurations applied to the target platform at signing.
signing_image_formatobjectThe format of the target platform's signing image.
targetstringThe validation template that is used by the target signing platform.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_signing_platformselectplatform_id, regionReturns information on a specific signing platform.
list_signing_platformsselectregioncategory, partner, target, maxResults, nextTokenLists all signing platforms available in AWS Signer that match the request parameters. If additional jobs remain to be listed, Signer returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that Signer returns in the nextToken parameter until all of your signing jobs have been returned.

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
platform_idstringThe ID of the target signing platform.
regionstringAWS region (default: us-east-1)
categorystringThe category type of a signing platform.
maxResultsintegerThe maximum number of results to be returned by this operation.
nextTokenstringValue for specifying the next set of paginated results to return. After you receive a response with truncated results, use this parameter in a subsequent request. Set it to the value of nextToken from the response that you just received.
partnerstringAny partner entities connected to a signing platform.
targetstringThe validation template that is used by the target signing platform.

SELECT examples

Returns information on a specific signing platform.

SELECT
category,
display_name,
max_size_in_mb,
partner,
platform_id,
revocation_supported,
signing_configuration,
signing_image_format,
target
FROM aws.signer.signing_platforms
WHERE platform_id = '{{ platform_id }}' -- required
AND region = '{{ region }}' -- required
;