{
"$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-create-alias-input-schema.json",
"title": "CreateAliasInput",
"description": "CreateAliasInput schema from Amazon Payment Cryptography",
"type": "object",
"properties": {
"AliasName": {
"allOf": [
{
"$ref": "#/components/schemas/AliasName"
},
{
"description": "<p>A friendly name that you can use to refer a key. An alias must begin with <code>alias/</code> followed by a name, for example <code>alias/ExampleAlias</code>. It can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-).</p> <important> <p>Don't include confidential or sensitive information in this field. This field may be displayed in plaintext in CloudTrail logs and other output.</p> </important>"
}
]
},
"KeyArn": {
"allOf": [
{
"$ref": "#/components/schemas/KeyArn"
},
{
"description": "The <code>KeyARN</code> of the key to associate with the alias."
}
]
}
},
"required": [
"AliasName"
]
}