Interface CfnInferenceComponent.InferenceComponentContainerSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInferenceComponent.InferenceComponentContainerSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnInferenceComponent

@Stability(Stable) public static interface CfnInferenceComponent.InferenceComponentContainerSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Defines a container that provides the runtime environment for a model that you deploy with an inference component.

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.*;
 InferenceComponentContainerSpecificationProperty inferenceComponentContainerSpecificationProperty = InferenceComponentContainerSpecificationProperty.builder()
         .artifactUrl("artifactUrl")
         .deployedImage(DeployedImageProperty.builder()
                 .resolutionTime("resolutionTime")
                 .resolvedImage("resolvedImage")
                 .specifiedImage("specifiedImage")
                 .build())
         .environment(Map.of(
                 "environmentKey", "environment"))
         .image("image")
         .build();
 

See Also: