Module Values.CreateCodeSigningConfigRequestSource

Creates a code signing configuration. A code signing configuration defines a list of allowed signing profiles and defines the code-signing validation policy (action to be taken if deployment validation checks fail).

Sourcetype nonrec t = {
  1. description : Description.t option;
    (*

    Descriptive name for this code signing configuration.

    *)
  2. allowedPublishers : AllowedPublishers.t;
    (*

    Signing profiles for this code signing configuration.

    *)
  3. codeSigningPolicies : CodeSigningPolicies.t option;
    (*

    The code signing policies define the actions to take if the validation checks fail.

    *)
  4. tags : Tags.t option;
    (*

    A list of tags to add to the code signing configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?codeSigningPolicies:??? -> ?tags:??? -> allowedPublishers:AllowedPublishers.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Description.t | `Structure of (string * [> `Enum of string | `List of [> `String of Arn.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