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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnInferenceExperiment.InferenceExperimentScheduleProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndTime
The timestamp at which the inference experiment ended or will end. -
getStartTime
The timestamp at which the inference experiment started or will start. -
builder
@Stability(Stable) static CfnInferenceExperiment.InferenceExperimentScheduleProperty.Builder builder()
-