WrappedKey

Parameter information for generating a wrapped key using TR-31 or TR-34 standard.

CryptographyFinancial ServicesPayment ProcessingPCI

Properties

Name Type Description
KeyMaterial object
WrappedKeyMaterialFormat object
WrappingKeyArn object
View JSON Schema on GitHub

JSON Schema

openapi-wrapped-key-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-wrapped-key-schema.json",
  "title": "WrappedKey",
  "description": "Parameter information for generating a wrapped key using TR-31 or TR-34 standard.",
  "type": "object",
  "properties": {
    "KeyMaterial": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyMaterial"
        },
        {
          "description": "Parameter information for generating a wrapped key using TR-31 or TR-34 standard."
        }
      ]
    },
    "WrappedKeyMaterialFormat": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WrappedKeyMaterialFormat"
        },
        {
          "description": "The key block format of a wrapped key."
        }
      ]
    },
    "WrappingKeyArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyArn"
        },
        {
          "description": "The <code>KeyARN</code> of the wrapped key."
        }
      ]
    }
  },
  "required": [
    "KeyMaterial",
    "WrappedKeyMaterialFormat",
    "WrappingKeyArn"
  ]
}