Interface CfnWorkflow.ContainerRegistryMapProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflow.ContainerRegistryMapProperty.Jsii$Proxy
- Enclosing class:
CfnWorkflow
@Stability(Stable)
public static interface CfnWorkflow.ContainerRegistryMapProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.omics.*;
ContainerRegistryMapProperty containerRegistryMapProperty = ContainerRegistryMapProperty.builder()
.imageMappings(List.of(ImageMappingProperty.builder()
.destinationImage("destinationImage")
.sourceImage("sourceImage")
.build()))
.registryMappings(List.of(RegistryMappingProperty.builder()
.ecrAccountId("ecrAccountId")
.ecrRepositoryPrefix("ecrRepositoryPrefix")
.upstreamRegistryUrl("upstreamRegistryUrl")
.upstreamRepositoryPrefix("upstreamRepositoryPrefix")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflow.ContainerRegistryMapPropertystatic final classAn implementation forCfnWorkflow.ContainerRegistryMapProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectImage mappings specify path mappings between the ECR private repository and their corresponding external repositories.default ObjectMapping that provides the ECR repository path where upstream container images are pulled and synchronized.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageMappings
Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnWorkflow.ImageMappingProperty>- See Also:
-
getRegistryMappings
Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnWorkflow.RegistryMappingProperty>- See Also:
-
builder
-