Skip to content

Commit

Permalink
Add note on readme
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Oct 30, 2024
1 parent 7155f76 commit 07714a9
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 07714a9

Please sign in to comment.