aws.payment_cryptography.get_parameters_for_export
Example SQL Queries
SELECT * FROMaws.payment_cryptography.get_parameters_for_exportWHERE"key_material_type" = 'VALUE'AND "signing_key_algorithm" = 'VALUE';Description
Gets the export token and the signing key certificate to initiate a TR-34 key export from Amazon Web Services Payment Cryptography.
The signing key certificate signs the wrapped key under export within the TR-34 key payload. The export token and signing key certificate must be in place and operational before calling ExportKey. The export token expires in 7 days. You can use the same export token to export multiple keys from your service account.
Cross-account use: This operation can't be used across different Amazon Web Services accounts.
Related operations:
Table Definition
| Column Name | Column Data Type |
|---|---|
| key_material_type Required Input Column The key block format type (for example, TR-34 or TR-31) to use during key material export. Export token is only required for a TR-34 key export, TR34_KEY_BLOCK. Export token is not required for TR-31 key export. | VARCHAR |
| signing_key_algorithm Required Input Column The algorithm of the signing key certificate for use in TR-34 key block generation. RSA_2048 is the only signing key algorithm allowed. | VARCHAR |
| _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
| |
| export_token The export token to initiate key export from Amazon Web Services Payment Cryptography. The export token expires after 7 days. You can use the same export token to export multiple keys from the same service account. | VARCHAR |
| parameters_valid_until_timestamp The validity period of the export token. | TIMESTAMP_S |
| signing_key_certificate The signing key certificate in PEM format (base64 encoded) of the public key for signature within the TR-34 key block. The certificate expires after 7 days. | VARCHAR |
| signing_key_certificate_chain The root certificate authority (CA) that signed the signing key certificate in PEM format (base64 encoded). | VARCHAR |