Show / Hide Table of Contents

Class SageMakerPipelineParameter

Properties for a pipeline parameter.

Inheritance
object
SageMakerPipelineParameter
Implements
ISageMakerPipelineParameter
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.Scheduler.Targets
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class SageMakerPipelineParameter : ISageMakerPipelineParameter
Syntax (vb)
Public Class SageMakerPipelineParameter Implements ISageMakerPipelineParameter
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.Targets;

            var sageMakerPipelineParameter = new SageMakerPipelineParameter {
                Name = "name",
                Value = "value"
            };

Synopsis

Constructors

SageMakerPipelineParameter()

Properties for a pipeline parameter.

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

SageMakerPipelineParameter()

Properties for a pipeline parameter.

public SageMakerPipelineParameter()
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.Targets;

            var sageMakerPipelineParameter = new SageMakerPipelineParameter {
                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

string

Remarks

ExampleMetadata: fixture=_generated

Value

Value of parameter to start execution of a SageMaker Model Building Pipeline.

public string Value { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

ISageMakerPipelineParameter
Back to top Generated by DocFX