Module Values_0.PresignedUrlAccessConfigSource

Configuration for accessing hub content through presigned URLs, including license agreement acceptance and URL validation settings.

Sourcetype nonrec t = {
  1. acceptEula : Boolean.t option;
    (*

    Indicates acceptance of the End User License Agreement (EULA) for gated models. Set to true to acknowledge acceptance of the license terms required for accessing gated content.

    *)
  2. expectedS3Url : S3ModelUri.t option;
    (*

    The expected S3 URL prefix for validation purposes. This parameter helps ensure consistency between the resolved S3 URIs and the deployment configuration, reducing potential compatibility issues.

    *)
}
Sourceval make : ?acceptEula:??? -> ?expectedS3Url:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of S3ModelUri.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