cdk-soca
v0.2.98
Published
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
Downloads
254
Readme
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!