npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aws-mdaa/sagemaker-pipeline

v1.6.0

Published

MDAA SageMaker Pipeline app — pure CDK pipeline definition via CfnPipeline

Downloads

166

Readme

SageMaker Pipeline

Note: This documentation is also available in a rendered format here.

Deploys a SageMaker Pipeline defined entirely in CDK and CloudFormation with no seed code required. The pipeline definition is specified as JSON configuration supporting Processing, Training, RegisterModel, CreateModel, Transform, and Condition steps. This provides a fully declarative, infrastructure-as-code approach to ML workflows. Use this module when you need a SageMaker Pipeline managed through YAML configuration without maintaining separate seed code repositories, or as an alternative to the SageMaker MLOps module's CodeCommit-based approach.


Deployed Resources

This module deploys and integrates the following resources:

SageMaker Pipeline - ML workflow pipeline with step definitions for processing, training, model registration, and batch transform.

AWS IAM Pipeline Execution Role - Execution role for the SageMaker Pipeline with permissions to run training jobs, processing jobs, and register models.

AWS KMS Key - Customer-managed encryption key for S3 model bucket, training job volumes, and processing job storage.

Amazon S3 Model Bucket - Stores model artifacts, processing outputs, and pipeline step data.

SageMaker Model Package Group (Optional) - Registry for versioned model packages produced by RegisterModel pipeline steps.

AWS SSM Parameters - Publishes pipeline ARN, model bucket name, and model package group ARN for cross-module integration.


Related Modules

  • SageMaker MLOps — Alternative approach that uses CodeCommit seed code and CodePipeline for training orchestration instead of declarative pipeline definitions
  • SageMaker Endpoint — Deploys real-time inference endpoints from model packages registered by this module's pipeline
  • SageMaker Model Monitoring — Monitors endpoints serving models produced by this module's pipeline for drift and quality degradation
  • SageMaker Studio Domain — Provides SageMaker domain tagging context for resource governance

Security/Compliance Details

This module is designed in alignment with MDAA security/compliance principles and CDK nag rulesets. Additional review is recommended prior to production deployment, ensuring organization-specific compliance requirements are met.

  • Encryption at Rest:
    • S3 model bucket encrypted with customer-managed KMS key
    • Training job storage volumes encrypted with KMS
    • Processing job storage volumes encrypted with KMS
    • Model artifacts encrypted at rest in the model registry
  • Encryption in Transit:
    • All S3 access enforced over HTTPS via bucket policy
    • Inter-container traffic encryption enabled for distributed training steps
  • Least Privilege:
    • Pipeline execution role scoped to specific S3 paths, KMS key, and SageMaker actions
    • Model package group access restricted to the pipeline execution role
    • Cross-account model registry access uses scoped IAM policies
  • Network Isolation:
    • Pipeline steps support VPC configuration with security groups and subnets
    • Training and processing containers can be configured for network isolation

Configuration

MDAA Config

Add the following snippet to your mdaa.yaml under the modules: section of a domain/env in order to use this module:

sagemaker-pipeline: # Module Name can be customized
  module_path: '@aws-mdaa/sagemaker-pipeline' # Must match module NPM package name
  module_configs:
    - ./sagemaker-pipeline.yaml # Filename/path can be customized

Module Config Samples and Variants

Copy the contents of the relevant sample config below into the ./sagemaker-pipeline.yaml file referenced in the MDAA config snippet above.

Minimal Configuration

Start here for a simple pipeline with a single training step and model registration using default instance types.

sample-config-minimal.yaml

--8<-- "target/docs/packages/apps/ai/sagemaker-pipeline-app/sample_configs/sample-config-minimal.yaml"

Comprehensive Configuration

Use this as a reference when you need multi-step pipelines with processing, training, conditional branching, model registration, VPC isolation, and cross-account model registry access.

sample-config-comprehensive.yaml

--8<-- "target/docs/packages/apps/ai/sagemaker-pipeline-app/sample_configs/sample-config-comprehensive.yaml"