Interface CfnInferenceExperiment.InferenceExperimentScheduleProperty

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

@Stability(Stable) public static interface CfnInferenceExperiment.InferenceExperimentScheduleProperty extends software.amazon.jsii.JsiiSerializable
The start and end times of an inference experiment.

The maximum duration that you can set for an inference experiment is 30 days.

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.*;
 InferenceExperimentScheduleProperty inferenceExperimentScheduleProperty = InferenceExperimentScheduleProperty.builder()
         .endTime("endTime")
         .startTime("startTime")
         .build();