aws.payment_cryptography.get_parameters_for_import
Example SQL Queries
SELECT * FROMaws.payment_cryptography.get_parameters_for_importWHERE"key_material_type" = 'VALUE'AND "wrapping_key_algorithm" = 'VALUE';Description
Gets the import token and the wrapping key certificate in PEM format (base64 encoded) to initiate a TR-34 WrappedKeyBlock or a RSA WrappedKeyCryptogram import into Amazon Web Services Payment Cryptography.
The wrapping key certificate wraps the key under import. The import token and wrapping key certificate must be in place and operational before calling ImportKey. The import token expires in 7 days. You can use the same import token to import multiple keys into 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 method to use for key material import. Import token is only required for TR-34 WrappedKeyBlock (TR34_KEY_BLOCK) and RSA WrappedKeyCryptogram (KEY_CRYPTOGRAM). Import token is not required for TR-31, root public key cerificate or trusted public key certificate. | VARCHAR |
| wrapping_key_algorithm Required Input Column The algorithm of the wrapping key for use within TR-34 WrappedKeyBlock or RSA WrappedKeyCryptogram. | 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
| |
| import_token The import token to initiate key import into Amazon Web Services Payment Cryptography. The import token expires after 7 days. You can use the same import token to import multiple keys to the same service account. | VARCHAR |
| parameters_valid_until_timestamp The validity period of the import token. | TIMESTAMP_S |
| wrapping_key_certificate The wrapping key certificate in PEM format (base64 encoded) of the wrapping key for use within the TR-34 key block. The certificate expires in 7 days. | VARCHAR |
| wrapping_key_certificate_chain The Amazon Web Services Payment Cryptography root certificate authority (CA) that signed the wrapping key certificate in PEM format (base64 encoded). | VARCHAR |