Module Values.SSHPublicKeySource

Contains information about an SSH public key. This data type is used as a response element in the GetSSHPublicKey and UploadSSHPublicKey operations.

Sourcetype nonrec t = {
  1. userName : UserNameType.t option;
    (*

    The name of the IAM user associated with the SSH public key.

    *)
  2. sSHPublicKeyId : PublicKeyIdType.t option;
    (*

    The unique identifier for the SSH public key.

    *)
  3. fingerprint : PublicKeyFingerprintType.t option;
    (*

    The MD5 message digest of the SSH public key.

    *)
  4. sSHPublicKeyBody : PublicKeyMaterialType.t option;
    (*

    The SSH public key.

    *)
  5. 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.

    *)
  6. uploadDate : DateType.t option;
    (*

    The date and time, in ISO 8601 date-time format, when the SSH public key was uploaded.

    *)
}
Sourceval make : ?userName:??? -> ?sSHPublicKeyId:??? -> ?fingerprint:??? -> ?sSHPublicKeyBody:??? -> ?status:??? -> ?uploadDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UserNameType.t | `Timestamp of DateType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t