From 07714a9d8d3032202676413b8d28d014cbeae965 Mon Sep 17 00:00:00 2001 From: Michael Sambol Date: Wed, 16 Oct 2024 12:30:40 -0700 Subject: [PATCH] Add note on readme --- .../aws-pipes-targets-alpha/test/integ.sagemaker.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/@aws-cdk/aws-pipes-targets-alpha/test/integ.sagemaker.ts b/packages/@aws-cdk/aws-pipes-targets-alpha/test/integ.sagemaker.ts index d0997bf28106b..5a9e459dec879 100644 --- a/packages/@aws-cdk/aws-pipes-targets-alpha/test/integ.sagemaker.ts +++ b/packages/@aws-cdk/aws-pipes-targets-alpha/test/integ.sagemaker.ts @@ -9,6 +9,13 @@ import * as sagemaker from 'aws-cdk-lib/aws-sagemaker'; import { Construct } from 'constructs'; import { SageMakerTarget } from '../lib/sagemaker'; +/* + * This integration test sends a message to an SQS queue which + * invokes a SageMaker pipeline. + * + * SQS (pipe source) --> SageMaker pipeline (pipe target) + */ + const app = new cdk.App(); const stack = new cdk.Stack(app, 'aws-cdk-pipes-targets-sagemaker'); const sourceQueue = new cdk.aws_sqs.Queue(stack, 'SourceQueue');