
com.pulumi.aws.synthetics.kotlin.outputs.GetRuntimeVersionsRuntimeVersion.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.synthetics.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property deprecationDate Date of deprecation if the runtme version is deprecated.
* @property description Description of the runtime version, created by Amazon.
* @property releaseDate Date that the runtime version was released.
* @property versionName Name of the runtime version.
* For a list of valid runtime versions, see [Canary Runtime Versions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Library.html).
*/
public data class GetRuntimeVersionsRuntimeVersion(
public val deprecationDate: String,
public val description: String,
public val releaseDate: String,
public val versionName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.synthetics.outputs.GetRuntimeVersionsRuntimeVersion): GetRuntimeVersionsRuntimeVersion = GetRuntimeVersionsRuntimeVersion(
deprecationDate = javaType.deprecationDate(),
description = javaType.description(),
releaseDate = javaType.releaseDate(),
versionName = javaType.versionName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy