Module Values.UpdateCodeSigningConfigRequestSource

Update the code signing configuration. Changes to the code signing configuration take effect the next time a user tries to deploy a code package to the function.

Sourcetype nonrec t = {
  1. codeSigningConfigArn : CodeSigningConfigArn.t;
    (*

    The The Amazon Resource Name (ARN) of the code signing configuration.

    *)
  2. description : Description.t option;
    (*

    Descriptive name for this code signing configuration.

    *)
  3. allowedPublishers : AllowedPublishers.t option;
    (*

    Signing profiles for this code signing configuration.

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

    The code signing policy.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?allowedPublishers:??? -> ?codeSigningPolicies:??? -> codeSigningConfigArn:CodeSigningConfigArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CodeSigningConfigArn.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