Show / Hide Table of Contents

Class CfnInferenceExperiment.InferenceExperimentScheduleProperty

The start and end times of an inference experiment.

Inheritance
object
CfnInferenceExperiment.InferenceExperimentScheduleProperty
Implements
CfnInferenceExperiment.IInferenceExperimentScheduleProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

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

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.

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"
             };

Properties

EndTime

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

public string? EndTime { get; set; }
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.

public string? StartTime { get; set; }
Property Value

string

Remarks

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

Implements

CfnInferenceExperiment.IInferenceExperimentScheduleProperty
Back to top Generated by DocFX