interface ImageMappingProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Omics.CfnWorkflowVersion.ImageMappingProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnWorkflowVersion_ImageMappingProperty |
![]() | software.amazon.awscdk.services.omics.CfnWorkflowVersion.ImageMappingProperty |
![]() | aws_cdk.aws_omics.CfnWorkflowVersion.ImageMappingProperty |
![]() | aws-cdk-lib » aws_omics » CfnWorkflowVersion » ImageMappingProperty |
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 { aws_omics as omics } from 'aws-cdk-lib';
const imageMappingProperty: omics.CfnWorkflowVersion.ImageMappingProperty = {
destinationImage: 'destinationImage',
sourceImage: 'sourceImage',
};
Properties
Name | Type | Description |
---|---|---|
destination | string | Specifies the URI of the corresponding image in the private ECR registry. |
source | string | Specifies the URI of the source image in the upstream registry. |
destinationImage?
Type:
string
(optional)
Specifies the URI of the corresponding image in the private ECR registry.
sourceImage?
Type:
string
(optional)
Specifies the URI of the source image in the upstream registry.