{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetSSHPublicKeyRequest", "title": "GetSSHPublicKeyRequest", "type": "object", "required": [ "UserName", "SSHPublicKeyId", "Encoding" ], "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.

" } ] }, "Encoding": { "allOf": [ { "$ref": "#/components/schemas/encodingType" }, { "description": "Specifies the public key encoding format to use in the response. To retrieve the public key in ssh-rsa format, use SSH. To retrieve the public key in PEM format, use PEM." } ] } } }