Module Values.DescribedHostKeySource

The details for a server host key.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    The unique Amazon Resource Name (ARN) for the host key.

    *)
  2. hostKeyId : HostKeyId.t option;
    (*

    A unique identifier for the host key.

    *)
  3. hostKeyFingerprint : HostKeyFingerprint.t option;
    (*

    The public key fingerprint, which is a short sequence of bytes used to identify the longer public key.

    *)
  4. description : HostKeyDescription.t option;
    (*

    The text description for this host key.

    *)
  5. type_ : HostKeyType.t option;
    (*

    The encryption algorithm that is used for the host key. The Type parameter is specified by using one of the following values: ssh-rsa ssh-ed25519 ecdsa-sha2-nistp256 ecdsa-sha2-nistp384 ecdsa-sha2-nistp521

    *)
  6. dateImported : DateImported.t option;
    (*

    The date on which the host key was added to the server.

    *)
  7. tags : Tags.t option;
    (*

    Key-value pairs that can be used to group and search for host keys.

    *)
}
Sourceval make : ?arn:??? -> ?hostKeyId:??? -> ?hostKeyFingerprint:??? -> ?description:??? -> ?type_:??? -> ?dateImported:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of Arn.t | `Timestamp of DateImported.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