Module Values.SigningPlatformOverridesSource

Any overrides that are applied to the signing configuration of a signing platform.

Sourcetype nonrec t = {
  1. signingConfiguration : SigningConfigurationOverrides.t option;
    (*

    A signing configuration that overrides the default encryption or hash algorithm of a signing job.

    *)
  2. signingImageFormat : ImageFormat.t option;
    (*

    A signed image is a JSON object. When overriding the default signing platform configuration, a customer can select either of two signing formats, JSONEmbedded or JSONDetached. (A third format value, JSON, is reserved for future use.) With JSONEmbedded, the signing image has the payload embedded in it. With JSONDetached, the payload is not be embedded in the signing image.

    *)
}
Sourceval make : ?signingConfiguration:??? -> ?signingImageFormat:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string ]) 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