Interface CfnWorkflowVersion.ImageMappingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowVersion.ImageMappingProperty.Jsii$Proxy
- Enclosing class:
CfnWorkflowVersion
@Stability(Stable)
public static interface CfnWorkflowVersion.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkflowVersion.ImageMappingProperty
static final class
An implementation forCfnWorkflowVersion.ImageMappingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationImage
Specifies the URI of the corresponding image in the private ECR registry.- See Also:
-
getSourceImage
Specifies the URI of the source image in the upstream registry.- See Also:
-
builder
-