Module Values.CustomArtifactConfigurationDescriptionSource

Specifies a dependency JAR or a JAR of user-defined functions.

Sourcetype nonrec t = {
  1. artifactType : ArtifactType.t option;
    (*

    UDF stands for user-defined functions. This type of artifact must be in an S3 bucket. A DEPENDENCY_JAR can be in either Maven or an S3 bucket.

    *)
  2. s3ContentLocationDescription : S3ContentLocation.t option;
  3. mavenReferenceDescription : MavenReference.t option;
    (*

    The parameters that are required to specify a Maven dependency.

    *)
}
Sourceval make : ?artifactType:??? -> ?s3ContentLocationDescription:??? -> ?mavenReferenceDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of BucketARN.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