interface InferenceExperimentScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnInferenceExperimentPropsMixin.InferenceExperimentScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnInferenceExperimentPropsMixin_InferenceExperimentScheduleProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnInferenceExperimentPropsMixin.InferenceExperimentScheduleProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnInferenceExperimentPropsMixin.InferenceExperimentScheduleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnInferenceExperimentPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const inferenceExperimentScheduleProperty: sagemaker_mixins.CfnInferenceExperimentPropsMixin.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.

.NET
Go
Java
Python
TypeScript