EmployeePropertiesArgs

data class EmployeePropertiesArgs(val age: Output<Int>? = null, val city: Output<String>? = null, val profile: Output<String>? = null) : ConvertibleToJava<EmployeePropertiesArgs>

Employee properties

Constructors

Link copied to clipboard
constructor(age: Output<Int>? = null, city: Output<String>? = null, profile: Output<String>? = null)

Properties

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

Age of employee

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

City of employee

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

Profile of employee

Functions

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