Module Values.CodeSigningPoliciesSource

Code signing configuration policies specify the validation failure action for signature mismatch or expiry.

Sourcetype nonrec t = {
  1. untrustedArtifactOnDeployment : CodeSigningPolicy.t option;
    (*

    Code signing configuration policy for deployment validation failure. If you set the policy to Enforce, Lambda blocks the deployment request if signature validation checks fail. If you set the policy to Warn, Lambda allows the deployment and issues a new Amazon CloudWatch metric (SignatureValidationErrors) and also stores the warning in the CloudTrail log. Default value: Warn

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