Interface CfnWorkflow.ImageMappingProperty

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

@Stability(Stable) public static interface CfnWorkflow.ImageMappingProperty extends software.amazon.jsii.JsiiSerializable
Specifies image mappings that workflow tasks can use.

For example, you can replace all the task references of a public image to use an equivalent image in your private ECR repository. You can use image mappings with upstream registries that don't support pull through cache. You need to manually synchronize the upstream registry with your private repository.

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.*;
 ImageMappingProperty imageMappingProperty = ImageMappingProperty.builder()
         .destinationImage("destinationImage")
         .sourceImage("sourceImage")
         .build();
 

See Also: