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