ExportKeyInput

ExportKeyInput schema from Amazon Payment Cryptography

CryptographyFinancial ServicesPayment ProcessingPCI

Properties

Name Type Description
ExportKeyIdentifier object
KeyMaterial object
View JSON Schema on GitHub

JSON Schema

openapi-export-key-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-payment-cryptography/refs/heads/main/json-schema/openapi-export-key-input-schema.json",
  "title": "ExportKeyInput",
  "description": "ExportKeyInput schema from Amazon Payment Cryptography",
  "type": "object",
  "properties": {
    "ExportKeyIdentifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyArnOrKeyAliasType"
        },
        {
          "description": "The <code>KeyARN</code> of the key under export from Amazon Web Services Payment Cryptography."
        }
      ]
    },
    "KeyMaterial": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExportKeyMaterial"
        },
        {
          "description": "The key block format type, for example, TR-34 or TR-31, to use during key material export."
        }
      ]
    }
  },
  "required": [
    "ExportKeyIdentifier",
    "KeyMaterial"
  ]
}