0.0.6 • Published 2 years ago

@aws-amplify/cdk-exported-backend v0.0.6

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

Amplify CLI cdk-exported-backend

Integration Tests

This CDK construct is used to include the CloudFormation resources generated by Amplify CLI Export command. The construct handles assets and CloudFormation files. It offers abstractions over the Amplify CLI generated cloud resources.

The library is published under the following

LanguageRepository
Typescript/Javascript@aws-amplify/cdk-exported-backend
Pythonaws-amplify.cdk.exported-backend
Javacom.amplifyframework:exported-backend

Usage

Install via NPM:

npm i @aws-amplify/cdk-exported-backend@latest

Add to your CDK app:

import { AmplifyExportedBackend }  from '@aws-amplify/cdk-exported-backend';
...
const amplifyExport = new AmplifyExportedBackend(app, 'AmplifyExportedBackend', {
  path: './amplify-export-myAmplifyApp',
  amplifyEnvironment: 'dev', 
});

Construct Props

The construct props extend stack props and can be used to override the root stack properties.

NameTypeDescriptionRequiredDefault
pathStringYou can use the absolute or the relative path to the location of the folder. When using relative paths it's important to note that the path is relative to the root of your CDK applicationYesundefined
stageStringThis works similar to Amplify CLI's environment names. The construct makes modification to be able to integrate into the CDK app.Yesundefined

Deploy this to your account

cdk deploy 

Contributing

We welcome community contributions and pull requests.

Security

See CONTRIBUTING for more information.

License

This project is licensed under the Apache-2.0 License.