Interface CfnWorkflowVersion.RegistryMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflowVersion.RegistryMappingProperty.Jsii$Proxy
Enclosing class:
CfnWorkflowVersion

@Stability(Stable) public static interface CfnWorkflowVersion.RegistryMappingProperty extends software.amazon.jsii.JsiiSerializable
If you are using the ECR pull through cache feature, the registry mapping maps between the ECR repository and the upstream registry where container images are pulled and synchronized.

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.omics.*;
 RegistryMappingProperty registryMappingProperty = RegistryMappingProperty.builder()
         .ecrAccountId("ecrAccountId")
         .ecrRepositoryPrefix("ecrRepositoryPrefix")
         .upstreamRegistryUrl("upstreamRegistryUrl")
         .upstreamRepositoryPrefix("upstreamRepositoryPrefix")
         .build();
 

See Also: