interface CfnReplicationConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECR.CfnReplicationConfigurationProps |
Java | software.amazon.awscdk.services.ecr.CfnReplicationConfigurationProps |
Python | aws_cdk.aws_ecr.CfnReplicationConfigurationProps |
TypeScript | @aws-cdk/aws-ecr » CfnReplicationConfigurationProps |
Properties for defining a CfnReplicationConfiguration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ecr from '@aws-cdk/aws-ecr';
const cfnReplicationConfigurationProps: ecr.CfnReplicationConfigurationProps = {
replicationConfiguration: {
rules: [{
destinations: [{
region: 'region',
registryId: 'registryId',
}],
// the properties below are optional
repositoryFilters: [{
filter: 'filter',
filterType: 'filterType',
}],
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| replication | IResolvable | Replication | The replication configuration for a registry. |
replicationConfiguration
Type:
IResolvable | Replication
The replication configuration for a registry.

.NET
Java
Python
TypeScript