Interface CfnModelQualityJobDefinition.EndpointInputProperty

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

@Stability(Stable) public static interface CfnModelQualityJobDefinition.EndpointInputProperty extends software.amazon.jsii.JsiiSerializable
Input object for the endpoint.

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.*;
 EndpointInputProperty endpointInputProperty = EndpointInputProperty.builder()
         .endpointName("endpointName")
         .localPath("localPath")
         // the properties below are optional
         .endTimeOffset("endTimeOffset")
         .inferenceAttribute("inferenceAttribute")
         .probabilityAttribute("probabilityAttribute")
         .probabilityThresholdAttribute(123)
         .s3DataDistributionType("s3DataDistributionType")
         .s3InputMode("s3InputMode")
         .startTimeOffset("startTimeOffset")
         .build();
 

See Also: