Module Values.ImportHostKeyRequestSource

Adds a host key to the server that's specified by the ServerId parameter.

Sourcetype nonrec t = {
  1. serverId : ServerId.t;
    (*

    The identifier of the server that contains the host key that you are importing.

    *)
  2. hostKeyBody : HostKey.t;
    (*

    The private key portion of an SSH key pair. Transfer Family accepts RSA, ECDSA, and ED25519 keys.

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

    The text description that identifies this host key.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> serverId:ServerId.t -> hostKeyBody:HostKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ServerId.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