com.pulumi.awsnative.evidently.kotlin.outputs.ExperimentRunningStatusObject.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.evidently.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property analysisCompleteTime Provide the analysis Completion time for an experiment
* @property desiredState Provide CANCELLED or COMPLETED desired state when stopping an experiment
* @property reason Reason is a required input for stopping the experiment
* @property status Provide START or STOP action to apply on an experiment
*/
public data class ExperimentRunningStatusObject(
public val analysisCompleteTime: String? = null,
public val desiredState: String? = null,
public val reason: String? = null,
public val status: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.evidently.outputs.ExperimentRunningStatusObject): ExperimentRunningStatusObject = ExperimentRunningStatusObject(
analysisCompleteTime = javaType.analysisCompleteTime().map({ args0 -> args0 }).orElse(null),
desiredState = javaType.desiredState().map({ args0 -> args0 }).orElse(null),
reason = javaType.reason().map({ args0 -> args0 }).orElse(null),
status = javaType.status().map({ args0 -> args0 }).orElse(null),
)
}
}