All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.evidently.kotlin.outputs.LaunchExecution.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.evidently.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property endedTime The date and time that the launch ended.
 * @property startedTime The date and time that the launch started.
 */
public data class LaunchExecution(
    public val endedTime: String? = null,
    public val startedTime: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.evidently.outputs.LaunchExecution): LaunchExecution = LaunchExecution(
            endedTime = javaType.endedTime().map({ args0 -> args0 }).orElse(null),
            startedTime = javaType.startedTime().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy