![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.evidently.kotlin.outputs.LaunchGroupToWeight.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.evidently.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property groupName The name of the launch group. It can include up to 127 characters.
* @property splitWeight The portion of launch traffic to allocate to this launch group.
* This is represented in thousandths of a percent. For example, specify 20,000 to allocate 20% of the launch audience to this launch group.
*/
public data class LaunchGroupToWeight(
public val groupName: String,
public val splitWeight: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.evidently.outputs.LaunchGroupToWeight): LaunchGroupToWeight = LaunchGroupToWeight(
groupName = javaType.groupName(),
splitWeight = javaType.splitWeight(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy