Class CfnSchedule.SageMakerPipelineParameterProperty
The name and value pair of a parameter to use to start execution of a SageMaker Model Building Pipeline.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Scheduler
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSchedule.SageMakerPipelineParameterProperty : CfnSchedule.ISageMakerPipelineParameterProperty
Syntax (vb)
Public Class CfnSchedule.SageMakerPipelineParameterProperty Implements CfnSchedule.ISageMakerPipelineParameterProperty
Remarks
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.Scheduler;
var sageMakerPipelineParameterProperty = new SageMakerPipelineParameterProperty {
Name = "name",
Value = "value"
};
Synopsis
Constructors
SageMakerPipelineParameterProperty() | The name and value pair of a parameter to use to start execution of a SageMaker Model Building Pipeline. |
Properties
Name | Name of parameter to start execution of a SageMaker Model Building Pipeline. |
Value | Value of parameter to start execution of a SageMaker Model Building Pipeline. |
Constructors
SageMakerPipelineParameterProperty()
The name and value pair of a parameter to use to start execution of a SageMaker Model Building Pipeline.
public SageMakerPipelineParameterProperty()
Remarks
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.Scheduler;
var sageMakerPipelineParameterProperty = new SageMakerPipelineParameterProperty {
Name = "name",
Value = "value"
};
Properties
Name
Name of parameter to start execution of a SageMaker Model Building Pipeline.
public string Name { get; set; }
Property Value
Remarks
Value
Value of parameter to start execution of a SageMaker Model Building Pipeline.
public string Value { get; set; }