nclaveeoh
nclaveeoh
I ran into the same problem using the AWS key approach, go with SERVERLESS_ACCESS_KEY instead. Go here to see how to create a serverless access key: https://www.serverless.com/framework/docs/dashboard/cicd/running-in-your-own-cicd/
The above solution does work great but I wonder if it's possible to have both the fully expanding and retract behavior working for buttons? For instance I want to do...
My workaround for now... ``` abstract class OtherPropertiesHolder(@get:JsonAnyGetter open val otherProperties: MutableMap = hashMapOf()) { @JsonAnySetter fun add(property: String, value: Any?) { otherProperties[property] = value } } ```