Interface CfnWorkflowVersion.RegistryMappingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowVersion.RegistryMappingProperty.Jsii$Proxy
- Enclosing class:
CfnWorkflowVersion
@Stability(Stable)
public static interface CfnWorkflowVersion.RegistryMappingProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.omics.*;
RegistryMappingProperty registryMappingProperty = RegistryMappingProperty.builder()
.ecrAccountId("ecrAccountId")
.ecrRepositoryPrefix("ecrRepositoryPrefix")
.upstreamRegistryUrl("upstreamRegistryUrl")
.upstreamRepositoryPrefix("upstreamRepositoryPrefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflowVersion.RegistryMappingPropertystatic final classAn implementation forCfnWorkflowVersion.RegistryMappingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAccount ID of the account that owns the upstream container image.default StringThe repository prefix to use in the ECR private repository.default StringThe URI of the upstream registry.default StringThe repository prefix of the corresponding repository in the upstream registry.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEcrAccountId
Account ID of the account that owns the upstream container image.- See Also:
-
getEcrRepositoryPrefix
The repository prefix to use in the ECR private repository.- See Also:
-
getUpstreamRegistryUrl
The URI of the upstream registry.- See Also:
-
getUpstreamRepositoryPrefix
The repository prefix of the corresponding repository in the upstream registry.- See Also:
-
builder
-