Interface ContainerDefinition

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ContainerDefinition.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-25T14:21:26.114Z") @Stability(Experimental) public interface ContainerDefinition extends software.amazon.jsii.JsiiSerializable
(experimental) Describes the container, as part of model definition.

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.alpha.*;
 ContainerImage containerImage;
 ModelData modelData;
 ContainerDefinition containerDefinition = ContainerDefinition.builder()
         .image(containerImage)
         // the properties below are optional
         .containerHostname("containerHostname")
         .environment(Map.of(
                 "environmentKey", "environment"))
         .modelData(modelData)
         .build();