DataSourceDocumentAttributeValueArgs

data class DataSourceDocumentAttributeValueArgs(val dateValue: Output<String>? = null, val longValue: Output<Int>? = null, val stringListValue: Output<List<String>>? = null, val stringValue: Output<String>? = null) : ConvertibleToJava<DataSourceDocumentAttributeValueArgs>

Constructors

Link copied to clipboard
constructor(dateValue: Output<String>? = null, longValue: Output<Int>? = null, stringListValue: Output<List<String>>? = null, stringValue: Output<String>? = null)

Properties

Link copied to clipboard
val dateValue: Output<String>? = null

A date expressed as an ISO 8601 string. It is important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.

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

A long integer value.

Link copied to clipboard
val stringListValue: Output<List<String>>? = null

A list of strings. The default maximum length or number of strings is 10.

Link copied to clipboard
val stringValue: Output<String>? = null

A string, such as "department".

Functions

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