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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppImageConfig.ContainerConfigPropertystatic final classAn 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.- See Also:
-
getContainerEntrypoint
The entrypoint used to run the application in the container.- See Also:
-
getContainerEnvironmentVariables
The environment variables to set in the container.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnAppImageConfig.CustomImageContainerEnvironmentVariableProperty>- See Also:
-
builder
-