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
fix(cli): hotswap output is different for different resources (#250)
Aligns hotswap output to always follow the pattern: `<CfnResourceType>:
'<physical name>'`
For example:
```
AWS::Lambda::Function 'my-func'
AWS::CodeBuild::Project 'my-project'
```
Previously we used "friendly" type names for some resources, but not
all.
Custom descriptions are kept only for more complicated resources, e.g.:
```
Contents of AWS::S3::Bucket 'my-bucket'
AWS::Lambda::Alias 'my-alias' for AWS::Lambda::Function 'my-func'
```
Arguably this reduces output fidelity to hotswap users, however it
increases consistency and maintainability.
---
Also attaches more information to each affected resources, opening up
potential future changes and structured data interfaces. This completes
the cleanup on the `hotswappableChanges` side. Next up is the
`nonHotswappableChanges`.
---
By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache-2.0 license
0 commit comments