interface CfnSigningConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECR.CfnSigningConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecr#CfnSigningConfigurationProps |
Java | software.amazon.awscdk.services.ecr.CfnSigningConfigurationProps |
Python | aws_cdk.aws_ecr.CfnSigningConfigurationProps |
TypeScript | aws-cdk-lib » aws_ecr » CfnSigningConfigurationProps |
Properties for defining a CfnSigningConfiguration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecr as ecr } from 'aws-cdk-lib';
const cfnSigningConfigurationProps: ecr.CfnSigningConfigurationProps = {
rules: [{
signingProfileArn: 'signingProfileArn',
// the properties below are optional
repositoryFilters: [{
filter: 'filter',
filterType: 'filterType',
}],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| rules | IResolvable | (IResolvable | Rule)[] | A list of signing rules. |
rules
Type:
IResolvable | (IResolvable | Rule)[]
A list of signing rules.
Each rule defines a signing profile and optional repository filters that determine which images are automatically signed.

.NET
Go
Java
Python
TypeScript