Interface CfnEndpointConfig.ClarifyInferenceConfigProperty

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

@Stability(Stable) public static interface CfnEndpointConfig.ClarifyInferenceConfigProperty extends software.amazon.jsii.JsiiSerializable
The inference configuration parameter for the model 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.*;
 ClarifyInferenceConfigProperty clarifyInferenceConfigProperty = ClarifyInferenceConfigProperty.builder()
         .contentTemplate("contentTemplate")
         .featureHeaders(List.of("featureHeaders"))
         .featuresAttribute("featuresAttribute")
         .featureTypes(List.of("featureTypes"))
         .labelAttribute("labelAttribute")
         .labelHeaders(List.of("labelHeaders"))
         .labelIndex(123)
         .maxPayloadInMb(123)
         .maxRecordCount(123)
         .probabilityAttribute("probabilityAttribute")
         .probabilityIndex(123)
         .build();
 

See Also: