interface ContainerRegistryMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Mixins.CfnWorkflowVersionPropsMixin.ContainerRegistryMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/mixins#CfnWorkflowVersionPropsMixin_ContainerRegistryMapProperty |
Java | software.amazon.awscdk.mixins.preview.services.omics.mixins.CfnWorkflowVersionPropsMixin.ContainerRegistryMapProperty |
Python | aws_cdk.mixins_preview.aws_omics.mixins.CfnWorkflowVersionPropsMixin.ContainerRegistryMapProperty |
TypeScript | @aws-cdk/mixins-preview » aws_omics » mixins » CfnWorkflowVersionPropsMixin » ContainerRegistryMapProperty |
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 { mixins as omics_mixins } from '@aws-cdk/mixins-preview/aws-omics';
const containerRegistryMapProperty: omics_mixins.CfnWorkflowVersionPropsMixin.ContainerRegistryMapProperty = {
imageMappings: [{
destinationImage: 'destinationImage',
sourceImage: 'sourceImage',
}],
registryMappings: [{
ecrAccountId: 'ecrAccountId',
ecrRepositoryPrefix: 'ecrRepositoryPrefix',
upstreamRegistryUrl: 'upstreamRegistryUrl',
upstreamRepositoryPrefix: 'upstreamRepositoryPrefix',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| image | IResolvable | (IResolvable | Image)[] | Image mappings specify path mappings between the ECR private repository and their corresponding external repositories. |
| registry | IResolvable | (IResolvable | Registry)[] | Mapping that provides the ECR repository path where upstream container images are pulled and synchronized. |
imageMappings?
Type:
IResolvable | (IResolvable | Image)[]
(optional)
Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.
registryMappings?
Type:
IResolvable | (IResolvable | Registry)[]
(optional)
Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.

.NET
Go
Java
Python
TypeScript