Interface CfnCodeSigningConfigProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeSigningConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:24.215Z")
@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")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCodeSigningConfigPropsstatic final classAn implementation forCfnCodeSigningConfigProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()List of allowed publishers.default ObjectThe code signing policy controls the validation failure action for signature mismatch or expiry.default StringCode signing configuration description.getTags()A list of tags to add to the code signing configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowedPublishers
List of allowed publishers.Returns union: either
IResolvableorCfnCodeSigningConfig.AllowedPublishersProperty- See Also:
-
getCodeSigningPolicies
The code signing policy controls the validation failure action for signature mismatch or expiry.Returns union: either
IResolvableorCfnCodeSigningConfig.CodeSigningPoliciesProperty- See Also:
-
getDescription
Code signing configuration description.- See Also:
-
getTags
A list of tags to add to the code signing configuration.You must have the
lambda:TagResource,lambda:UntagResource, andlambda:ListTagspermissions for your IAM principal to manage the CloudFormation stack. If you don't have these permissions, there might be unexpected behavior with stack-level tags propagating to the resource during resource creation and update.- See Also:
-
builder
- Returns:
- a
CfnCodeSigningConfigProps.BuilderofCfnCodeSigningConfigProps
-