interface CfnCodeSigningConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnCodeSigningConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnCodeSigningConfigMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnCodeSigningConfigMixinProps |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnCodeSigningConfigMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » 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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const cfnCodeSigningConfigMixinProps: lambda_mixins.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