Show / Hide Table of Contents

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.

Inheritance
object
CfnRule.SageMakerPipelineParametersProperty
Implements
CfnRule.ISageMakerPipelineParametersProperty
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.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRule.SageMakerPipelineParametersProperty : CfnRule.ISageMakerPipelineParametersProperty
Syntax (vb)
Public Class CfnRule.SageMakerPipelineParametersProperty Implements CfnRule.ISageMakerPipelineParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-sagemakerpipelineparameters.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-sagemakerpipelineparameters.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.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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-sagemakerpipelineparameters.html#cfn-events-rule-sagemakerpipelineparameters-pipelineparameterlist

Type union: either IResolvable or (either IResolvable or CfnRule.ISageMakerPipelineParameterProperty)[]

Implements

CfnRule.ISageMakerPipelineParametersProperty
Back to top Generated by DocFX