Show / Hide Table of Contents

Interface ITimeConversionOptions

Options for how to convert time to a different unit.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public interface ITimeConversionOptions
Syntax (vb)
Public Interface ITimeConversionOptions
Remarks

ExampleMetadata: fixture=_generated

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
};

Synopsis

Properties

Integral

If true, conversions into a larger time unit (e.g. Seconds to Minutes) will fail if the result is not an integer.

Properties

Integral

If true, conversions into a larger time unit (e.g. Seconds to Minutes) will fail if the result is not an integer.

virtual Nullable<bool> Integral { get; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: true

Back to top Generated by DocFX