Class TimeConversionOptions
Options for how to convert time to a different unit.
public class TimeConversionOptions : ITimeConversionOptions
- Inheritance
-
TimeConversionOptions
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK;
var timeConversionOptions = new TimeConversionOptions {
Integral = false
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
TimeConversionOptions()
public TimeConversionOptions()
Properties
Integral
If true
, conversions into a larger time unit (e.g. Seconds
to Minutes
) will fail if the result is not an integer.
public bool? Integral { get; set; }
Property Value
- bool?
Remarks
Default: true