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: