-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(cloudformation): extract "custom-resources" module (#3027)
Extract the AwsCustomResource construct to a separate module called @aws-cdk/custom-resources, dedicated to special custom resources such as this one. Also, stop bundling the entire AWS SDK and instead extract `apis/metadata.json` during build time which fixes #2951. BREAKING CHANGE: The `AwsCustomResource` class was moved to a new module called @aws-cdk/custom-resource
- Loading branch information
Elad Ben-Israel
authored
Jun 24, 2019
1 parent
43f9fef
commit 767687d
Showing
22 changed files
with
1,594 additions
and
491 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
export * from './cloud-formation-capabilities'; | ||
export * from './custom-resource'; | ||
export * from './aws-custom-resource'; | ||
|
||
// AWS::CloudFormation CloudFormation Resources: | ||
export * from './cloudformation.generated'; |
Oops, something went wrong.