aws-cdk-lib.aws_ecr.CfnReplicationConfiguration.ReplicationConfigurationProperty

interface ReplicationConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.ECR.CfnReplicationConfiguration.ReplicationConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecr#CfnReplicationConfiguration_ReplicationConfigurationProperty
Javasoftware.amazon.awscdk.services.ecr.CfnReplicationConfiguration.ReplicationConfigurationProperty
Pythonaws_cdk.aws_ecr.CfnReplicationConfiguration.ReplicationConfigurationProperty
TypeScript aws-cdk-lib » aws_ecr » CfnReplicationConfiguration » ReplicationConfigurationProperty

The replication configuration for a registry.

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 replicationConfigurationProperty: ecr.CfnReplicationConfiguration.ReplicationConfigurationProperty = {
  rules: [{
    destinations: [{
      region: 'region',
      registryId: 'registryId',
    }],

    // the properties below are optional
    repositoryFilters: [{
      filter: 'filter',
      filterType: 'filterType',
    }],
  }],
};

Properties

NameTypeDescription
rulesIResolvable | IResolvable | ReplicationRuleProperty[]An array of objects representing the replication destinations and repository filters for a replication configuration.

rules

Type: IResolvable | IResolvable | ReplicationRuleProperty[]

An array of objects representing the replication destinations and repository filters for a replication configuration.