Module Values_0.SigningProfileParameterSource

Describes the code-signing profile.

Sourcetype nonrec t = {
  1. certificateArn : CertificateArn.t option;
    (*

    Certificate ARN.

    *)
  2. platform : Platform.t option;
    (*

    The hardware platform of your device.

    *)
  3. certificatePathOnDevice : CertificatePathOnDevice.t option;
    (*

    The location of the code-signing certificate on your device.

    *)
}
Sourceval make : ?certificateArn:??? -> ?platform:??? -> ?certificatePathOnDevice:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CertificateArn.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