Module Values.ImportSshPublicKeyRequestSource

Adds a Secure Shell (SSH) public key to a Transfer Family user identified by a UserName value assigned to the specific file transfer protocol-enabled server, identified by ServerId. The response returns the UserName value, the ServerId value, and the name of the SshPublicKeyId.

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

    A system-assigned unique identifier for a server.

    *)
  2. sshPublicKeyBody : SshPublicKeyBody.t;
    (*

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

    *)
  3. userName : UserName.t;
    (*

    The name of the Transfer Family user that is assigned to one or more servers.

    *)
}
Sourceval context_ : string
Sourceval make : serverId:ServerId.t -> sshPublicKeyBody:SshPublicKeyBody.t -> userName:UserName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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