describeAdjustmentTypes
abstract suspend fun describeAdjustmentTypes(input: DescribeAdjustmentTypesRequest = DescribeAdjustmentTypesRequest { }): 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
}