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
The resource aws_appautoscaling_scheduled_action considers the parameters scalable_dimension, scalable_target_action, and schedule to be optional. However, they are required by the AWS API to create a new scheduled action. Since the AWS API provides only a Put operation, these parameters are technically optional, since they do not need to be passed on update if the values are not changing.
Mark these parameters are required in code and documentation.
Typically, converting a parameter from optional to required is a breaking change. In this case, the AWS API is already returning an error, so there will be no impact on practitioners.
Affected Resource
aws_appautoscaling_scheduled_action
The text was updated successfully, but these errors were encountered:
The resource
aws_appautoscaling_scheduled_action
considers the parametersscalable_dimension
,scalable_target_action
, andschedule
to be optional. However, they are required by the AWS API to create a new scheduled action. Since the AWS API provides only a Put operation, these parameters are technically optional, since they do not need to be passed on update if the values are not changing.Mark these parameters are required in code and documentation.
Typically, converting a parameter from optional to required is a breaking change. In this case, the AWS API is already returning an error, so there will be no impact on practitioners.
Affected Resource
The text was updated successfully, but these errors were encountered: