Module: AWSCDK::SizeRoundingBehavior

Defined in:
size_rounding_behavior.rb

Overview

Rounding behaviour when converting between units of Size.

Constant Summary collapse

FAIL =
Deprecated.
Note:

Default:

Fail the conversion if the result is not an integer.

Jsii::Enum.new("aws-cdk-lib.SizeRoundingBehavior", "FAIL")
FLOOR =
Deprecated.
Note:

Default:

If the result is not an integer, round it to the closest integer less than the result.

Jsii::Enum.new("aws-cdk-lib.SizeRoundingBehavior", "FLOOR")
NONE =
Deprecated.
Note:

Default:

Don't round.

Return even if the result is a fraction.

Jsii::Enum.new("aws-cdk-lib.SizeRoundingBehavior", "NONE")