com.pulumi.aws.licensemanager.kotlin.outputs.GetReceivedLicenseConsumptionConfigurationBorrowConfiguration.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.licensemanager.kotlin.outputs
import kotlin.Boolean
import kotlin.Int
import kotlin.Suppress
/**
*
* @property allowEarlyCheckIn Indicates whether early check-ins are allowed.
* @property maxTimeToLiveInMinutes Maximum time for the provisional configuration, in minutes.
*/
public data class GetReceivedLicenseConsumptionConfigurationBorrowConfiguration(
public val allowEarlyCheckIn: Boolean,
public val maxTimeToLiveInMinutes: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.licensemanager.outputs.GetReceivedLicenseConsumptionConfigurationBorrowConfiguration): GetReceivedLicenseConsumptionConfigurationBorrowConfiguration =
GetReceivedLicenseConsumptionConfigurationBorrowConfiguration(
allowEarlyCheckIn = javaType.allowEarlyCheckIn(),
maxTimeToLiveInMinutes = javaType.maxTimeToLiveInMinutes(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy