interface CfnCodeSigningConfigProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lambda.CfnCodeSigningConfigProps |
Java | software.amazon.awscdk.services.lambda.CfnCodeSigningConfigProps |
Python | aws_cdk.aws_lambda.CfnCodeSigningConfigProps |
TypeScript | @aws-cdk/aws-lambda » CfnCodeSigningConfigProps |
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 * as lambda from '@aws-cdk/aws-lambda';
const cfnCodeSigningConfigProps: lambda.CfnCodeSigningConfigProps = {
allowedPublishers: {
signingProfileVersionArns: ['signingProfileVersionArns'],
},
// the properties below are optional
codeSigningPolicies: {
untrustedArtifactOnDeployment: 'untrustedArtifactOnDeployment',
},
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | IResolvable | Allowed | List of allowed publishers. |
| code | IResolvable | Code | The code signing policy controls the validation failure action for signature mismatch or expiry. |
| description? | string | Code signing configuration description. |
allowedPublishers
Type:
IResolvable | Allowed
List of allowed publishers.
codeSigningPolicies?
Type:
IResolvable | Code
(optional)
The code signing policy controls the validation failure action for signature mismatch or expiry.
description?
Type:
string
(optional)
Code signing configuration description.

.NET
Java
Python
TypeScript