{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteAccountAliasRequest", "title": "DeleteAccountAliasRequest", "type": "object", "required": [ "AccountAlias" ], "properties": { "AccountAlias": { "allOf": [ { "$ref": "#/components/schemas/accountAliasType" }, { "description": "
The name of the account alias to delete.
This parameter allows (through its regex pattern) a string of characters consisting of lowercase letters, digits, and dashes. You cannot start or finish with a dash, nor can you have two dashes in a row.
" } ] } } }