com.pulumi.aws.ssm.kotlin.outputs.ContactsRotationRecurrenceShiftCoverage.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.ssm.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property coverageTimes (Required) Information about when an on-call shift begins and ends. See Coverage Times for more details.
* @property mapBlockKey
*/
public data class ContactsRotationRecurrenceShiftCoverage(
public val coverageTimes: List? = null,
public val mapBlockKey: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.ssm.outputs.ContactsRotationRecurrenceShiftCoverage): ContactsRotationRecurrenceShiftCoverage = ContactsRotationRecurrenceShiftCoverage(
coverageTimes = javaType.coverageTimes().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.ssm.kotlin.outputs.ContactsRotationRecurrenceShiftCoverageCoverageTime.Companion.toKotlin(args0)
})
}),
mapBlockKey = javaType.mapBlockKey(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy