Show / Hide Table of Contents

Class SageMakerTarget

(experimental) An EventBridge Pipes target that sends messages to a SageMaker pipeline.

Inheritance
object
SageMakerTarget
Implements
ITarget
Namespace: Amazon.CDK.AWS.Pipes.Targets.Alpha
Assembly: Amazon.CDK.AWS.Pipes.Targets.Alpha.dll
Syntax (csharp)
public class SageMakerTarget : DeputyBase, ITarget
Syntax (vb)
Public Class SageMakerTarget Inherits DeputyBase Implements ITarget
Remarks

Stability: Experimental

ExampleMetadata: infused

Examples
Queue sourceQueue;
             IPipeline targetPipeline;


             var pipelineTarget = new SageMakerTarget(targetPipeline);

             var pipe = new Pipe(this, "Pipe", new PipeProps {
                 Source = new SqsSource(sourceQueue),
                 Target = pipelineTarget
             });

Synopsis

Constructors

SageMakerTarget(IPipeline, ISageMakerTargetParameters?)

(experimental) An EventBridge Pipes target that sends messages to a SageMaker pipeline.

Properties

TargetArn

(experimental) The ARN of the target resource.

Methods

Bind(IPipe)

(experimental) Bind this target to a pipe.

GrantPush(IRole)

(experimental) Grant the pipe role to push to the target.

Constructors

SageMakerTarget(IPipeline, ISageMakerTargetParameters?)

(experimental) An EventBridge Pipes target that sends messages to a SageMaker pipeline.

public SageMakerTarget(IPipeline pipeline, ISageMakerTargetParameters? parameters = null)
Parameters
pipeline IPipeline
parameters ISageMakerTargetParameters
Remarks

Stability: Experimental

Properties

TargetArn

(experimental) The ARN of the target resource.

public virtual string TargetArn { get; }
Property Value

string

Remarks

Stability: Experimental

Methods

Bind(IPipe)

(experimental) Bind this target to a pipe.

public virtual ITargetConfig Bind(IPipe pipe)
Parameters
pipe IPipe
Returns

ITargetConfig

Remarks

Stability: Experimental

GrantPush(IRole)

(experimental) Grant the pipe role to push to the target.

public virtual void GrantPush(IRole grantee)
Parameters
grantee IRole
Remarks

Stability: Experimental

Implements

ITarget
Back to top Generated by DocFX