Show / Hide Table of Contents

Class TimeConversionOptions

Options for how to convert time to a different unit.

Inheritance
System.Object
TimeConversionOptions
Implements
ITimeConversionOptions
Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public class TimeConversionOptions : Object, ITimeConversionOptions
Syntax (vb)
Public Class TimeConversionOptions
    Inherits Object
    Implements 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

Constructors

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.

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 Nullable<bool> Integral { get; set; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: true

Implements

ITimeConversionOptions
Back to top Generated by DocFX