@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:02.854Z") @Stability(value=Experimental) public interface EcrPublicProps extends software.amazon.jsii.JsiiSerializable
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.apprunner.*;
EcrPublicProps ecrPublicProps = EcrPublicProps.builder()
.imageIdentifier("imageIdentifier")
// the properties below are optional
.imageConfiguration(ImageConfiguration.builder()
.environment(Map.of(
"environmentKey", "environment"))
.port(123)
.startCommand("startCommand")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EcrPublicProps.Builder
A builder for
EcrPublicProps |
static class |
EcrPublicProps.Jsii$Proxy
An implementation for
EcrPublicProps |
| Modifier and Type | Method and Description |
|---|---|
static EcrPublicProps.Builder |
builder() |
default ImageConfiguration |
getImageConfiguration()
(experimental) The image configuration for the image from ECR Public.
|
String |
getImageIdentifier()
(experimental) The ECR Public image URI.
|
@Stability(value=Experimental) @NotNull String getImageIdentifier()
@Stability(value=Experimental) @Nullable default ImageConfiguration getImageConfiguration()
Default: - no image configuration will be passed. The default `port` will be 8080.
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-imageconfiguration.html#cfn-apprunner-service-imageconfiguration-port@Stability(value=Experimental) static EcrPublicProps.Builder builder()
EcrPublicProps.Builder of EcrPublicPropsCopyright © 2022. All rights reserved.