interface CfnCodeSigningConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnCodeSigningConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnCodeSigningConfigMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnCodeSigningConfigMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnCodeSigningConfigMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnCodeSigningConfigMixinProps |
Properties for CfnCodeSigningConfigPropsMixin.
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/cfn-property-mixins';
const cfnCodeSigningConfigMixinProps: lambda.CfnCodeSigningConfigMixinProps = {
allowedPublishers: {
signingProfileVersionArns: ['signingProfileVersionArns'],
},
codeSigningPolicies: {
untrustedArtifactOnDeployment: 'untrustedArtifactOnDeployment',
},
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
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. |
| tags? | Cfn[] | A list of tags to add to the code signing configuration. |
allowedPublishers?
Type:
IResolvable | Allowed
(optional)
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.
tags?
Type:
Cfn[]
(optional)
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.

.NET
Go
Java
Python
TypeScript