Module Values.OntapFileSystemIdentitySource

Specifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point. The identity can be either a UNIX user or a Windows user.

Sourcetype nonrec t = {
  1. type_ : OntapFileSystemUserType.t;
    (*

    Specifies the FSx for ONTAP user identity type. Valid values are UNIX and WINDOWS.

    *)
  2. unixUser : OntapUnixFileSystemUser.t option;
    (*

    Specifies the UNIX user identity for file system operations.

    *)
  3. windowsUser : OntapWindowsFileSystemUser.t option;
    (*

    Specifies the Windows user identity for file system operations.

    *)
}
Sourceval context_ : string
Sourceval make : ?unixUser:??? -> ?windowsUser:??? -> type_:OntapFileSystemUserType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of OntapFileSystemUserName.t ]) list ]) 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