@Stability(value=Stable)
public static interface CfnService.ImageRepositoryProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
ImageRepositoryProperty imageRepositoryProperty = ImageRepositoryProperty.builder()
.imageIdentifier("imageIdentifier")
.imageRepositoryType("imageRepositoryType")
// the properties below are optional
.imageConfiguration(ImageConfigurationProperty.builder()
.port("port")
.runtimeEnvironmentVariables(List.of(KeyValuePairProperty.builder()
.name("name")
.value("value")
.build()))
.startCommand("startCommand")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnService.ImageRepositoryProperty.Builder
A builder for
CfnService.ImageRepositoryProperty |
static class |
CfnService.ImageRepositoryProperty.Jsii$Proxy
An implementation for
CfnService.ImageRepositoryProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnService.ImageRepositoryProperty.Builder |
builder() |
default Object |
getImageConfiguration()
`CfnService.ImageRepositoryProperty.ImageConfiguration`.
|
String |
getImageIdentifier()
`CfnService.ImageRepositoryProperty.ImageIdentifier`.
|
String |
getImageRepositoryType()
`CfnService.ImageRepositoryProperty.ImageRepositoryType`.
|
@Stability(value=Stable) @Nullable default Object getImageConfiguration()
@Stability(value=Stable) @NotNull String getImageIdentifier()
@Stability(value=Stable) @NotNull String getImageRepositoryType()
@Stability(value=Stable) static CfnService.ImageRepositoryProperty.Builder builder()
Copyright © 2021. All rights reserved.