Skip to content

Commit

Permalink
feat(stepfunctions): add support for AmazonSageMaker APIs (#2808)
Browse files Browse the repository at this point in the history
Have updated the package `@aws-cdk/aws-stepfunctions-tasks` to include support for SageMaker APIs as per documentation here: https://docs.aws.amazon.com/step-functions/latest/dg/connect-sagemaker.html

Includes support for the following Amazon SageMaker API calls:
* `CreateTrainingJob`
* `CreateTransformJob`

Partially remediates #1314
  • Loading branch information
mattmcclean authored and rix0rrr committed Jun 12, 2019
1 parent e0718ef commit 8b1f3ed
Show file tree
Hide file tree
Showing 9 changed files with 1,560 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/@aws-cdk/aws-stepfunctions-tasks/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ export * from './run-ecs-task-base-types';
export * from './publish-to-topic';
export * from './send-to-queue';
export * from './run-ecs-ec2-task';
export * from './run-ecs-fargate-task';
export * from './run-ecs-fargate-task';
export * from './sagemaker-task-base-types';
export * from './sagemaker-train-task';
export * from './sagemaker-transform-task';
Loading

0 comments on commit 8b1f3ed

Please sign in to comment.