Interface CfnWorkflow.ContainerRegistryMapProperty

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

@Stability(Stable) public static interface CfnWorkflow.ContainerRegistryMapProperty extends software.amazon.jsii.JsiiSerializable
Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries.

For more information, see Container images in the AWS HealthOmics User Guide .

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.*;
 ContainerRegistryMapProperty containerRegistryMapProperty = ContainerRegistryMapProperty.builder()
         .imageMappings(List.of(ImageMappingProperty.builder()
                 .destinationImage("destinationImage")
                 .sourceImage("sourceImage")
                 .build()))
         .registryMappings(List.of(RegistryMappingProperty.builder()
                 .ecrAccountId("ecrAccountId")
                 .ecrRepositoryPrefix("ecrRepositoryPrefix")
                 .upstreamRegistryUrl("upstreamRegistryUrl")
                 .upstreamRepositoryPrefix("upstreamRepositoryPrefix")
                 .build()))
         .build();
 

See Also: