interface CodeSigningConfigReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lambda.CodeSigningConfigReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslambda#CodeSigningConfigReference |
Java | software.amazon.awscdk.interfaces.lambda.CodeSigningConfigReference |
Python | aws_cdk.interfaces.aws_lambda.CodeSigningConfigReference |
TypeScript | aws-cdk-lib » interfaces » aws_lambda » CodeSigningConfigReference |
A reference to a CodeSigningConfig resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as interfaces_aws_lambda } from 'aws-cdk-lib/interfaces';
const codeSigningConfigReference: interfaces_aws_lambda.CodeSigningConfigReference = {
codeSigningConfigArn: 'codeSigningConfigArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The CodeSigningConfigArn of the CodeSigningConfig resource. |
codeSigningConfigArn
Type:
string
The CodeSigningConfigArn of the CodeSigningConfig resource.

.NET
Go
Java
Python
TypeScript