aws-cdk-lib.aws_lambda.CfnCodeSigningConfigProps

interface CfnCodeSigningConfigProps

LanguageType name
.NETAmazon.CDK.AWS.Lambda.CfnCodeSigningConfigProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnCodeSigningConfigProps
Javasoftware.amazon.awscdk.services.lambda.CfnCodeSigningConfigProps
Pythonaws_cdk.aws_lambda.CfnCodeSigningConfigProps
TypeScript aws-cdk-lib » 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 { aws_lambda as lambda } from 'aws-cdk-lib';
const cfnCodeSigningConfigProps: lambda.CfnCodeSigningConfigProps = {
  allowedPublishers: {
    signingProfileVersionArns: ['signingProfileVersionArns'],
  },

  // the properties below are optional
  codeSigningPolicies: {
    untrustedArtifactOnDeployment: 'untrustedArtifactOnDeployment',
  },
  description: 'description',
};

Properties

NameTypeDescription
allowedPublishersIResolvable | AllowedPublishersPropertyList of allowed publishers.
codeSigningPolicies?IResolvable | CodeSigningPoliciesPropertyThe code signing policy controls the validation failure action for signature mismatch or expiry.
description?stringCode signing configuration description.

allowedPublishers

Type: IResolvable | AllowedPublishersProperty

List of allowed publishers.


codeSigningPolicies?

Type: IResolvable | CodeSigningPoliciesProperty (optional)

The code signing policy controls the validation failure action for signature mismatch or expiry.


description?

Type: string (optional)

Code signing configuration description.