Interface CfnCodeSigningConfig.CodeSigningPoliciesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCodeSigningConfig.CodeSigningPoliciesProperty.Jsii$Proxy
Enclosing class:
CfnCodeSigningConfig

@Stability(Stable) public static interface CfnCodeSigningConfig.CodeSigningPoliciesProperty extends software.amazon.jsii.JsiiSerializable
Code signing configuration policies specify the validation failure action for signature mismatch or expiry.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lambda.*;
 CodeSigningPoliciesProperty codeSigningPoliciesProperty = CodeSigningPoliciesProperty.builder()
         .untrustedArtifactOnDeployment("untrustedArtifactOnDeployment")
         .build();