interface InferenceExperimentScheduleProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnInferenceExperiment.InferenceExperimentScheduleProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnInferenceExperiment.InferenceExperimentScheduleProperty |
Python | aws_cdk.aws_sagemaker.CfnInferenceExperiment.InferenceExperimentScheduleProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnInferenceExperiment » InferenceExperimentScheduleProperty |
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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const inferenceExperimentScheduleProperty: sagemaker.CfnInferenceExperiment.InferenceExperimentScheduleProperty = {
endTime: 'endTime',
startTime: 'startTime',
};
Properties
Name | Type | Description |
---|---|---|
end | string | The timestamp at which the inference experiment ended or will end. |
start | string | The timestamp at which the inference experiment started or will start. |
endTime?
Type:
string
(optional)
The timestamp at which the inference experiment ended or will end.
startTime?
Type:
string
(optional)
The timestamp at which the inference experiment started or will start.