Class CfnInferenceExperiment.InferenceExperimentScheduleProperty
The start and end times of an inference experiment.
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnInferenceExperiment.InferenceExperimentScheduleProperty : CfnInferenceExperiment.IInferenceExperimentScheduleProperty
Syntax (vb)
Public Class CfnInferenceExperiment.InferenceExperimentScheduleProperty Implements CfnInferenceExperiment.IInferenceExperimentScheduleProperty
Remarks
The maximum duration that you can set for an inference experiment is 30 days.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var inferenceExperimentScheduleProperty = new InferenceExperimentScheduleProperty {
EndTime = "endTime",
StartTime = "startTime"
};
Synopsis
Constructors
InferenceExperimentScheduleProperty() | The start and end times of an inference experiment. |
Properties
EndTime | The timestamp at which the inference experiment ended or will end. |
StartTime | The timestamp at which the inference experiment started or will start. |
Constructors
InferenceExperimentScheduleProperty()
The start and end times of an inference experiment.
public InferenceExperimentScheduleProperty()
Remarks
The maximum duration that you can set for an inference experiment is 30 days.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var inferenceExperimentScheduleProperty = new InferenceExperimentScheduleProperty {
EndTime = "endTime",
StartTime = "startTime"
};
Properties
EndTime
The timestamp at which the inference experiment ended or will end.
public string? EndTime { get; set; }
Property Value
Remarks
StartTime
The timestamp at which the inference experiment started or will start.
public string? StartTime { get; set; }