com.pulumi.aws.connect.kotlin.outputs.HoursOfOperationConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.connect.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property day Specifies the day that the hours of operation applies to.
* @property endTime A end time block specifies the time that your contact center closes. The `end_time` is documented below.
* @property startTime A start time block specifies the time that your contact center opens. The `start_time` is documented below.
*/
public data class HoursOfOperationConfig(
public val day: String,
public val endTime: HoursOfOperationConfigEndTime,
public val startTime: HoursOfOperationConfigStartTime,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.connect.outputs.HoursOfOperationConfig): HoursOfOperationConfig = HoursOfOperationConfig(
day = javaType.day(),
endTime = javaType.endTime().let({ args0 ->
com.pulumi.aws.connect.kotlin.outputs.HoursOfOperationConfigEndTime.Companion.toKotlin(args0)
}),
startTime = javaType.startTime().let({ args0 ->
com.pulumi.aws.connect.kotlin.outputs.HoursOfOperationConfigStartTime.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy