describeAdjustmentTypes  
  inline suspend fun AutoScalingClient.describeAdjustmentTypes(crossinline block: DescribeAdjustmentTypesRequest.Builder.() -> Unit): DescribeAdjustmentTypesResponse
Describes the available adjustment types for step scaling and simple scaling policies.
The following adjustment types are supported:
- ChangeInCapacity
- ExactCapacity
- PercentChangeInCapacity
Samples
fun main() { 
   //sampleStart 
   // This example describes the available adjustment types.
val resp = autoScalingClient.describeAdjustmentTypes() 
   //sampleEnd
}