interface SageMakerTargetParameters
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Pipes.Targets.Alpha.SageMakerTargetParameters |
Go | github.com/aws/aws-cdk-go/awscdkpipestargetsalpha/v2#SageMakerTargetParameters |
Java | software.amazon.awscdk.services.pipes.targets.alpha.SageMakerTargetParameters |
Python | aws_cdk.aws_pipes_targets_alpha.SageMakerTargetParameters |
TypeScript (source) | @aws-cdk/aws-pipes-targets-alpha » SageMakerTargetParameters |
SageMaker target properties.
Example
declare const sourceQueue: sqs.Queue;
declare const targetPipeline: sagemaker.IPipeline;
const pipelineTarget = new targets.SageMakerTarget(targetPipeline, {
inputTransformation: pipes.InputTransformation.fromObject({ body: "👀" }),
});
const pipe = new pipes.Pipe(this, 'Pipe', {
source: new SqsSource(sourceQueue),
target: pipelineTarget,
});
Properties
Name | Type | Description |
---|---|---|
input | IInput | The input transformation to apply to the message before sending it to the target. |
pipeline | { [string]: string } | List of parameter names and values for SageMaker Model Building Pipeline execution. |
inputTransformation?
Type:
IInput
(optional, default: none)
The input transformation to apply to the message before sending it to the target.
pipelineParameters?
Type:
{ [string]: string }
(optional, default: none)
List of parameter names and values for SageMaker Model Building Pipeline execution.
The Name/Value pairs are passed to start execution of the pipeline.