Interface CfnInferenceComponent.InferenceComponentStartupParametersProperty

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

@Stability(Stable) public static interface CfnInferenceComponent.InferenceComponentStartupParametersProperty extends software.amazon.jsii.JsiiSerializable
Settings that take effect while the model container starts up.

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.*;
 InferenceComponentStartupParametersProperty inferenceComponentStartupParametersProperty = InferenceComponentStartupParametersProperty.builder()
         .containerStartupHealthCheckTimeoutInSeconds(123)
         .modelDataDownloadTimeoutInSeconds(123)
         .build();
 

See Also: