interface RegistryMappingProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Omics.CfnWorkflow.RegistryMappingProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnWorkflow_RegistryMappingProperty |
![]() | software.amazon.awscdk.services.omics.CfnWorkflow.RegistryMappingProperty |
![]() | aws_cdk.aws_omics.CfnWorkflow.RegistryMappingProperty |
![]() | aws-cdk-lib » aws_omics » CfnWorkflow » 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 { aws_omics as omics } from 'aws-cdk-lib';
const registryMappingProperty: omics.CfnWorkflow.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.