aws.signer.get_revocation_status
Example SQL Queries
SELECT * FROMaws.signer.get_revocation_statusWHERE"signature_timestamp" = 'VALUE'AND "platform_id" = 'VALUE'AND "profile_version_arn" = 'VALUE'AND "job_arn" = 'VALUE'AND "certificate_hashes" = 'VALUE';Description
Retrieves the revocation status of one or more of the signing profile, signing job, and signing certificate.
Table Definition
| Column Name | Column Data Type |
|---|---|
| certificate_hashes Required Input Column A list of composite signed hashes that identify certificates. A certificate identifier consists of a subject certificate TBS hash (signed by the parent CA) combined with a parent CA TBS hash (signed by the parent CA’s CA). Root certificates are defined as their own CA. The following example shows how to calculate a hash for this parameter using OpenSSL commands: openssl asn1parse -in childCert.pem -strparse 4 -out childCert.tbs openssl sha384 < childCert.tbs -binary > childCertTbsHash openssl asn1parse -in parentCert.pem -strparse 4 -out parentCert.tbs openssl sha384 < parentCert.tbs -binary > parentCertTbsHash xxd -p childCertTbsHash > certificateHash.hex xxd -p parentCertTbsHash >> certificateHash.hex cat certificateHash.hex | tr -d '\n' | VARCHAR[] |
Show child fields
| |
| job_arn Required Input Column The ARN of a signing job. | VARCHAR |
| platform_id Required Input Column The ID of a signing platform. | VARCHAR |
| profile_version_arn Required Input Column The version of a signing profile. | VARCHAR |
| signature_timestamp Required Input Column The timestamp of the signature that validates the profile or job. | TIMESTAMP_S |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| revoked_entities A list of revoked entities (including zero or more of the signing profile ARN, signing job ARN, and certificate hashes) supplied as input to the API. | VARCHAR[] |
Show child fields
| |