You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Highlights
A new construct library for AWS Step Functions
(docs).
The library provides rich APIs for modeling state machines by exposing a
programmatic interface for Amazon State
Language.
A new construct library for Amazon S3 bucket deployments
(docs).
You can use now automatically populate an S3 Bucket from a .zip file or a
local directory. This is a building block for end-to-end support for static
websites in the AWS CDK.
Bug Fixes
aws-apigateway: make LambdaRestApi proxy by default (#963) (a5f5e2c), closes #959
aws-cdk: Allow use of assumed roles behind a proxy (#898) (f2b1048)
aws-cdk: Auto-delete stacks that failed creating before new attempt (#917) (2af8309)
docs: added link to CloudFormation concepts (#934) (666bbba)
BREAKING CHANGES
aws-apigateway: specifying a path no longer works. If you used to
provide a '/', remove it. Otherwise, you will have to supply proxy: false
and construct more complex resource paths yourself.
aws-lambda: The construct lambda.InlineJavaScriptLambda is no longer supported. Use lambda.Code.inline instead; lambda.Runtime.NodeJS43Edge runtime is removed. CloudFront docs stipulate that you should use node6.10 or node8.10. It is always possible to use any value by instantiating a lambda.Runtime object.