DateArgs

data class DateArgs(val day: Output<Int>? = null, val month: Output<Int>? = null, val year: Output<Int>? = null) : ConvertibleToJava<DateArgs>

Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. The date must be a valid calendar date between the year 1 and 9999.

Constructors

Link copied to clipboard
fun DateArgs(day: Output<Int>? = null, month: Output<Int>? = null, year: Output<Int>? = null)

Functions

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

Properties

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

Day of month. Must be from 1 to 31 and valid for the year and month.

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

Month of date. Must be from 1 to 12.

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

Year of date. Must be from 1 to 9999.