enum SizeRoundingBehavior
Language | Type name |
---|---|
.NET | Amazon.CDK.SizeRoundingBehavior |
Java | software.amazon.awscdk.core.SizeRoundingBehavior |
Python | aws_cdk.core.SizeRoundingBehavior |
TypeScript (source) | @aws-cdk/core » SizeRoundingBehavior |
Rounding behaviour when converting between units of Size
.
Example
Size.mebibytes(2).toKibibytes() // yields 2048
Size.kibibytes(2050).toMebibytes({ rounding: SizeRoundingBehavior.FLOOR }) // yields 2
Members
Name | Description |
---|---|
FAIL | Fail the conversion if the result is not an integer. |
FLOOR | If the result is not an integer, round it to the closest integer less than the result. |
NONE | Don't round. |
FAIL
Fail the conversion if the result is not an integer.
FLOOR
If the result is not an integer, round it to the closest integer less than the result.
NONE
Don't round.
Return even if the result is a fraction.