interface AllowedPublishersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lambda.Mixins.CfnCodeSigningConfigPropsMixin.AllowedPublishersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslambda/mixins#CfnCodeSigningConfigPropsMixin_AllowedPublishersProperty |
Java | software.amazon.awscdk.mixins.preview.services.lambda.mixins.CfnCodeSigningConfigPropsMixin.AllowedPublishersProperty |
Python | aws_cdk.mixins_preview.aws_lambda.mixins.CfnCodeSigningConfigPropsMixin.AllowedPublishersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lambda » mixins » 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 { mixins as lambda_mixins } from '@aws-cdk/mixins-preview/aws-lambda';
const allowedPublishersProperty: lambda_mixins.CfnCodeSigningConfigPropsMixin.AllowedPublishersProperty = {
signingProfileVersionArns: ['signingProfileVersionArns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| signing | string[] | The Amazon Resource Name (ARN) for each of the signing profiles. |
signingProfileVersionArns?
Type:
string[]
(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