{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-payment-cryptography/refs/heads/main/json-structure/openapi-create-alias-input-structure.json", "name": "CreateAliasInput", "description": "CreateAliasInput schema from Amazon Payment Cryptography", "type": "object", "properties": { "AliasName": { "allOf": [ { "$ref": "#/components/schemas/AliasName" }, { "description": "

A friendly name that you can use to refer a key. An alias must begin with alias/ followed by a name, for example alias/ExampleAlias. It can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-).

Don't include confidential or sensitive information in this field. This field may be displayed in plaintext in CloudTrail logs and other output.

" } ] }, "KeyArn": { "allOf": [ { "$ref": "#/components/schemas/KeyArn" }, { "description": "The KeyARN of the key to associate with the alias." } ] } }, "required": [ "AliasName" ] }