I am extending built-in AWS blueprint to include custom properties. I have a requirement to do custom validation.
e.g: creating an AWS autoscaling group requires 3 properties: Desired size, Minimum size and Maximum size. I would like to have the following validation done before submitting the request.
Minimum size <= Desired size <= Maximum size
Is it possible to do this?