Show / Hide Table of Contents

Interface CfnInferenceExperiment.IInferenceExperimentScheduleProperty

The start and end times of an inference experiment.

Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnInferenceExperiment.IInferenceExperimentScheduleProperty
Syntax (vb)
Public Interface CfnInferenceExperiment.IInferenceExperimentScheduleProperty
Remarks

The maximum duration that you can set for an inference experiment is 30 days.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-inferenceexperimentschedule.html

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

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.

Properties

EndTime

The timestamp at which the inference experiment ended or will end.

string? EndTime { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-inferenceexperimentschedule.html#cfn-sagemaker-inferenceexperiment-inferenceexperimentschedule-endtime

StartTime

The timestamp at which the inference experiment started or will start.

string? StartTime { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferenceexperiment-inferenceexperimentschedule.html#cfn-sagemaker-inferenceexperiment-inferenceexperimentschedule-starttime

Back to top Generated by DocFX