{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteSSHPublicKeyRequest", "title": "DeleteSSHPublicKeyRequest", "type": "object", "required": [ "UserName", "SSHPublicKeyId" ], "properties": { "UserName": { "allOf": [ { "$ref": "#/components/schemas/userNameType" }, { "description": "
The name of the IAM user associated with the SSH public key.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
" } ] }, "SSHPublicKeyId": { "allOf": [ { "$ref": "#/components/schemas/publicKeyIdType" }, { "description": "The unique identifier for the SSH public key.
This parameter allows (through its regex pattern) a string of characters that can consist of any upper or lowercased letter or digit.
" } ] } } }