Interface CfnCodeSigningConfigProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCodeSigningConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:03.820Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCodeSigningConfigProps
static final class
An implementation forCfnCodeSigningConfigProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
List of allowed publishers.default Object
The code signing policy controls the validation failure action for signature mismatch or expiry.default String
Code 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.- See Also:
-
getCodeSigningPolicies
The code signing policy controls the validation failure action for signature mismatch or expiry.- 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:ListTags
permissions for your IAM principal to manage the AWS 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.Builder
ofCfnCodeSigningConfigProps
-