Class CfnRule.SageMakerPipelineParametersProperty
These are custom parameters to use when the target is a SageMaker AI Model Building Pipeline that starts based on EventBridge events.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRule.SageMakerPipelineParametersProperty : CfnRule.ISageMakerPipelineParametersProperty
Syntax (vb)
Public Class CfnRule.SageMakerPipelineParametersProperty Implements CfnRule.ISageMakerPipelineParametersProperty
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.Events;
var sageMakerPipelineParametersProperty = new SageMakerPipelineParametersProperty {
PipelineParameterList = new [] { new SageMakerPipelineParameterProperty {
Name = "name",
Value = "value"
} }
};
Synopsis
Constructors
| SageMakerPipelineParametersProperty() | These are custom parameters to use when the target is a SageMaker AI Model Building Pipeline that starts based on EventBridge events. |
Properties
| PipelineParameterList | List of Parameter names and values for SageMaker AI Model Building Pipeline execution. |
Constructors
SageMakerPipelineParametersProperty()
These are custom parameters to use when the target is a SageMaker AI Model Building Pipeline that starts based on EventBridge events.
public SageMakerPipelineParametersProperty()
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.Events;
var sageMakerPipelineParametersProperty = new SageMakerPipelineParametersProperty {
PipelineParameterList = new [] { new SageMakerPipelineParameterProperty {
Name = "name",
Value = "value"
} }
};
Properties
PipelineParameterList
List of Parameter names and values for SageMaker AI Model Building Pipeline execution.
public object? PipelineParameterList { get; set; }