TimeArgs

data class TimeArgs(val hour: Output<Int>, val minute: Output<Int>? = null) : ConvertibleToJava<TimeArgs>

The time of day.

Constructors

Link copied to clipboard
constructor(hour: Output<Int>, minute: Output<Int>? = null)

Properties

Link copied to clipboard
val hour: Output<Int>

The hour element of the time. Allowed values range from 0 (start of the selected day) to 24 (end of the selected day). Hour value 24 cannot be combined with any other minute value but 0.

Link copied to clipboard
val minute: Output<Int>? = null

The minute element of the time. Allowed values are 0 and 30. If not specified, its value defaults to 0.

Functions

Link copied to clipboard
open override fun toJava(): TimeArgs