Class SageMakerTarget
(experimental) An EventBridge Pipes target that sends messages to a SageMaker pipeline.
Inheritance
Implements
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) | |
SageMakerTarget(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
SageMakerTarget(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
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)
public SageMakerTarget(IPipeline pipeline, ISageMakerTargetParameters parameters = null)
Parameters
- pipeline IPipeline
- parameters ISageMakerTargetParameters
Remarks
Stability: Experimental
SageMakerTarget(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected SageMakerTarget(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
SageMakerTarget(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected SageMakerTarget(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
Properties
TargetArn
(experimental) The ARN of the target resource.
public virtual string TargetArn { get; }
Property Value
System.String
Remarks
Stability: Experimental
Methods
Bind(IPipe)
(experimental) Bind this target to a pipe.
public virtual ITargetConfig Bind(IPipe pipe)
Parameters
- pipe IPipe
Returns
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