Values.SSHPublicKeySourceContains information about an SSH public key. This data type is used as a response element in the GetSSHPublicKey and UploadSSHPublicKey operations.
type nonrec t = {userName : UserNameType.t option;The name of the IAM user associated with the SSH public key.
*)sSHPublicKeyId : PublicKeyIdType.t option;The unique identifier for the SSH public key.
*)fingerprint : PublicKeyFingerprintType.t option;The MD5 message digest of the SSH public key.
*)sSHPublicKeyBody : PublicKeyMaterialType.t option;The SSH public key.
*)status : StatusType.t option;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 : DateType.t option;The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of UserNameType.t
| `Timestamp of DateType.t ])
list ]