cdk-soca is an AWS CDK construct library that allows you to create the Scale-Out Computing on AWS with AWS CDK in TypeScript or Python


License
Apache-2.0
Install
pip install cdk-soca==0.2.98

Documentation

awscdk-jsii-template NPM version PyPI version Release

Welcome to cdk-soca

cdk-soca is an AWS CDK construct library that allows you to create the Scale-Out Computing on AWS with AWS CDK in TypeScript or Python.

Sample

import * as soca from 'cdk-soca';

// create the CDK application
const app = new App();

// create the stack in the CDK app
const stack = new Stack(app, 'soca-testing-stack');

// create the workload in the CDK stack
new soca.Workload(stack, 'Workload');

That's all!