interface ReplicationDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECR.CfnReplicationConfigurationPropsMixin.ReplicationDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecr#CfnReplicationConfigurationPropsMixin_ReplicationDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecr.CfnReplicationConfigurationPropsMixin.ReplicationDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecr.CfnReplicationConfigurationPropsMixin.ReplicationDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecr » CfnReplicationConfigurationPropsMixin » ReplicationDestinationProperty |
An array of objects representing the destination for a replication rule.
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/cfn-property-mixins';
const replicationDestinationProperty: ecr.CfnReplicationConfigurationPropsMixin.ReplicationDestinationProperty = {
region: 'region',
registryId: 'registryId',
};
Properties
| Name | Type | Description |
|---|---|---|
| region? | string | The Region to replicate to. |
| registry | string | The AWS account ID of the Amazon ECR private registry to replicate to. |
region?
Type:
string
(optional)
The Region to replicate to.
registryId?
Type:
string
(optional)
The AWS account ID of the Amazon ECR private registry to replicate to.
When configuring cross-Region replication within your own registry, specify your own account ID.

.NET
Go
Java
Python
TypeScript