Interface CfnReplicationConfiguration.ReplicationDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicationConfiguration.ReplicationDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnReplicationConfiguration
@Stability(Stable)
public static interface CfnReplicationConfiguration.ReplicationDestinationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ecr.*;
ReplicationDestinationProperty replicationDestinationProperty = ReplicationDestinationProperty.builder()
.region("region")
.registryId("registryId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnReplicationConfiguration.ReplicationDestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The Region to replicate to.The AWS account ID of the Amazon ECR private registry to replicate to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegion
The Region to replicate to.- See Also:
-
getRegistryId
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.
- See Also:
-
builder
@Stability(Stable) static CfnReplicationConfiguration.ReplicationDestinationProperty.Builder builder()
-