{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SSHPublicKey",
"title": "SSHPublicKey",
"type": "object",
"required": [
"UserName",
"SSHPublicKeyId",
"Fingerprint",
"SSHPublicKeyBody",
"Status"
],
"properties": {
"UserName": {
"allOf": [
{
"$ref": "#/components/schemas/userNameType"
},
{
"description": "The name of the IAM user associated with the SSH public key."
}
]
},
"SSHPublicKeyId": {
"allOf": [
{
"$ref": "#/components/schemas/publicKeyIdType"
},
{
"description": "The unique identifier for the SSH public key."
}
]
},
"Fingerprint": {
"allOf": [
{
"$ref": "#/components/schemas/publicKeyFingerprintType"
},
{
"description": "The MD5 message digest of the SSH public key."
}
]
},
"SSHPublicKeyBody": {
"allOf": [
{
"$ref": "#/components/schemas/publicKeyMaterialType"
},
{
"description": "The SSH public key."
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/statusType"
},
{
"description": "The status of the SSH public key. Active means that the key can be used for authentication with an CodeCommit repository. Inactive means that the key cannot be used."
}
]
},
"UploadDate": {
"allOf": [
{
"$ref": "#/components/schemas/dateType"
},
{
"description": "The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded."
}
]
}
},
"description": "
Contains information about an SSH public key.
This data type is used as a response element in the GetSSHPublicKey and UploadSSHPublicKey operations.
" }