Interface EcrPublicProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EcrPublicProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-05-31T18:44:11.702Z")
@Stability(Experimental)
public interface EcrPublicProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties of the image repository for `Source.fromEcrPublic()`.
Example:
Service.Builder.create(this, "Service") .source(Source.fromEcrPublic(EcrPublicProps.builder() .imageConfiguration(ImageConfiguration.builder().port(8000).build()) .imageIdentifier("public.ecr.aws/aws-containers/hello-app-runner:latest") .build())) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forEcrPublicProps
static final class
An implementation forEcrPublicProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic EcrPublicProps.Builder
builder()
default ImageConfiguration
(experimental) The image configuration for the image from ECR Public.(experimental) The ECR Public image URI.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageIdentifier
(experimental) The ECR Public image URI. -
getImageConfiguration
(experimental) The image configuration for the image from ECR Public.Default: - no image configuration will be passed. The default `port` will be 8080.
- See Also:
-
builder
- Returns:
- a
EcrPublicProps.Builder
ofEcrPublicProps
-