Interface CfnAppImageConfig.ContainerConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppImageConfig.ContainerConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnAppImageConfig
@Stability(Stable)
public static interface CfnAppImageConfig.ContainerConfigProperty
extends software.amazon.jsii.JsiiSerializable
The configuration used to run the application image container.
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.sagemaker.*; ContainerConfigProperty containerConfigProperty = ContainerConfigProperty.builder() .containerArguments(List.of("containerArguments")) .containerEntrypoint(List.of("containerEntrypoint")) .containerEnvironmentVariables(List.of(CustomImageContainerEnvironmentVariableProperty.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAppImageConfig.ContainerConfigProperty
static final class
An implementation forCfnAppImageConfig.ContainerConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerArguments
The arguments for the container when you're running the application. -
getContainerEntrypoint
The entrypoint used to run the application in the container. -
getContainerEnvironmentVariables
The environment variables to set in the container. -
builder
-