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
route53:recordValue: string prop in route53.TxtRecord changed to values: string[]
recordValue prop in route53.CnameRecord renamed to domainName
route53.AliasRecord has been removed, use route53.ARecord or route53.AaaaRecord with the target prop.
kms: The EncryptionKeyAlias class was renamed to Alias.
Associated types (such as EncryptionKeyAliasProps) were renamed in the
same way.
cli: This release requires CDK CLI >= 0.34.0
core:App.run() was renamed to App.synth() (soft deprecation, it will be removed in the next release).
core:node.stack is now Stack.of(construct) (fixes #2766)
core:node.resolve has been moved to stack.resolve.
core:node.stringifyJson has been moved to stack.stringifyJson.
core:node.validateTree is now ConstructNode.validate(node)
core:node.prepareTree is now ConstructNode.prepare(node)
core:node.getContext is now node.tryGetContext
core:node.recordReference is now node.addReference
core:node.apply is now node.applyAspect
core:node.ancestors() is now node.scopes
core:node.required has been removed.
core:node.typename has been removed.
core:node.addChild is now private
core:node.findReferences() is now node.references
core:node.findDependencies() is now node.dependencies
core:stack.dependencies() is now stack.dependencies
core:CfnElement.stackPath has been removed.
core:CloudFormationLang is now internal (use stack.toJsonString())
cloudwatch: using an SNS topic as CloudWatch Alarm Actxion now
requires an integration object from the @aws-cdk/aws-cloudwatch-actions
package.
event-targets:targets.EcsEc2Task renamed to targets.EcsTask
SNS - Subscription endpoint is now type string (previously any)
Step Functions - result in the Pass state is now type map (previously any)
the following modules are no longer released: @aws-cdk/applet-js, @aws-cdk/aws-autoscaling-api, @aws-cdk/aws-codedeploy-api
cli: applets are no longer supported as an app type, use "decdk" instead.
core: Properties passed to addPropertyOverride should match in capitalization to the CloudFormation schema (normally pascal case). For example, addPropertyOverride('accessControl', 'xxx') should now be addPropertyOverride('AccessControl', 'xxx').
rds: rds.RotationSingleUser renamed to rds.SecretRotation
rds: rds.ClusterParameterGroup no longer has setParameter() and removeParameter() methods, use the parameters prop directly in the constructor instead.