interface RegistryMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Mixins.CfnWorkflowPropsMixin.RegistryMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/mixins#CfnWorkflowPropsMixin_RegistryMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.omics.mixins.CfnWorkflowPropsMixin.RegistryMappingProperty |
Python | aws_cdk.mixins_preview.aws_omics.mixins.CfnWorkflowPropsMixin.RegistryMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_omics » mixins » CfnWorkflowPropsMixin » RegistryMappingProperty |
If you are using the ECR pull through cache feature, the registry mapping maps between the ECR repository and the upstream registry where container images are pulled and synchronized.
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 registryMappingProperty: omics_mixins.CfnWorkflowPropsMixin.RegistryMappingProperty = {
ecrAccountId: 'ecrAccountId',
ecrRepositoryPrefix: 'ecrRepositoryPrefix',
upstreamRegistryUrl: 'upstreamRegistryUrl',
upstreamRepositoryPrefix: 'upstreamRepositoryPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| ecr | string | Account ID of the account that owns the upstream container image. |
| ecr | string | The repository prefix to use in the ECR private repository. |
| upstream | string | The URI of the upstream registry. |
| upstream | string | The repository prefix of the corresponding repository in the upstream registry. |
ecrAccountId?
Type:
string
(optional)
Account ID of the account that owns the upstream container image.
ecrRepositoryPrefix?
Type:
string
(optional)
The repository prefix to use in the ECR private repository.
upstreamRegistryUrl?
Type:
string
(optional)
The URI of the upstream registry.
upstreamRepositoryPrefix?
Type:
string
(optional)
The repository prefix of the corresponding repository in the upstream registry.

.NET
Go
Java
Python
TypeScript