-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapigw-step-functions-cdk.ts
21 lines (17 loc) · 1007 Bytes
/
apigw-step-functions-cdk.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env node
import 'source-map-support/register';
import * as cdk from 'aws-cdk-lib';
import { ApigwStepFunctionsCdkStack } from '../lib/apigw-step-functions-cdk-stack';
const app = new cdk.App();
new ApigwStepFunctionsCdkStack(app, 'ApigwStepFunctionsCdkStack', {
/* If you don't specify 'env', this stack will be environment-agnostic.
* Account/Region-dependent features and context lookups will not work,
* but a single synthesized template can be deployed anywhere. */
/* Uncomment the next line to specialize this stack for the AWS Account
* and Region that are implied by the current CLI configuration. */
// env: { account: process.env.CDK_DEFAULT_ACCOUNT, region: process.env.CDK_DEFAULT_REGION },
/* Uncomment the next line if you know exactly what Account and Region you
* want to deploy the stack to. */
// env: { account: '123456789012', region: 'us-east-1' },
/* For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html */
});