I need to add suspended processes to Cloudformation.
I tried adding a SuspendedProcesses property.
ASG:
Type: AWS::AutoScaling::AutoScalingGroup
Properties:
DesiredCapacity: 1
MinSize: 1
MaxSize: 2
LaunchConfigurationName: !Ref LaunchConfigurationName
SuspendedProcesses:
- ReplaceUnhealthy
However, I receive an error that it's an unsupported property.