Interface CfnCodeSigningConfigProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCodeSigningConfigProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:40.571Z") @Stability(Stable) public interface CfnCodeSigningConfigProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnCodeSigningConfig.

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.*;
 CfnCodeSigningConfigProps cfnCodeSigningConfigProps = CfnCodeSigningConfigProps.builder()
         .allowedPublishers(AllowedPublishersProperty.builder()
                 .signingProfileVersionArns(List.of("signingProfileVersionArns"))
                 .build())
         // the properties below are optional
         .codeSigningPolicies(CodeSigningPoliciesProperty.builder()
                 .untrustedArtifactOnDeployment("untrustedArtifactOnDeployment")
                 .build())
         .description("description")
         .build();
 
  • Method Details

    • getAllowedPublishers

      @Stability(Stable) @NotNull Object getAllowedPublishers()
      List of allowed publishers.
    • getCodeSigningPolicies

      @Stability(Stable) @Nullable default Object getCodeSigningPolicies()
      The code signing policy controls the validation failure action for signature mismatch or expiry.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      Code signing configuration description.
    • builder

      @Stability(Stable) static CfnCodeSigningConfigProps.Builder builder()
      Returns:
      a CfnCodeSigningConfigProps.Builder of CfnCodeSigningConfigProps