interface AllowedPublishersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnCodeSigningConfigPropsMixin.AllowedPublishersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnCodeSigningConfigPropsMixin_AllowedPublishersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnCodeSigningConfigPropsMixin.AllowedPublishersProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnCodeSigningConfigPropsMixin.AllowedPublishersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnCodeSigningConfigPropsMixin » AllowedPublishersProperty |
List of signing profiles that can sign a code package.
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 allowedPublishersProperty: lambda.CfnCodeSigningConfigPropsMixin.AllowedPublishersProperty = {
signingProfileVersionArns: ['signingProfileVersionArns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| signing | (string | ISigning)[] | The Amazon Resource Name (ARN) for each of the signing profiles. |
signingProfileVersionArns?
Type:
(string | ISigning)[]
(optional)
The Amazon Resource Name (ARN) for each of the signing profiles.
A signing profile defines a trusted user who can sign a code package.

.NET
Go
Java
Python
TypeScript