Module Values_0.StartSigningJobParameterSource

Information required to start a signing job.

Sourcetype nonrec t = {
  1. signingProfileParameter : SigningProfileParameter.t option;
    (*

    Describes the code-signing profile.

    *)
  2. signingProfileName : SigningProfileName.t option;
    (*

    The code-signing profile name.

    *)
  3. destination : Destination.t option;
    (*

    The location to write the code-signed file.

    *)
}
Sourceval make : ?signingProfileParameter:??? -> ?signingProfileName:??? -> ?destination:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SigningProfileName.t | `Structure of (string * [> `String of CertificateArn.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) 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