com.pulumi.awsnative.kendraranking.kotlin.outputs.ExecutionPlanCapacityUnitsConfiguration.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.kendraranking.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property rescoreCapacityUnits The amount of extra capacity for your rescore execution plan.
* A single extra capacity unit for a rescore execution plan provides 0.01 rescore requests per second. You can add up to 1000 extra capacity units.
*/
public data class ExecutionPlanCapacityUnitsConfiguration(
public val rescoreCapacityUnits: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kendraranking.outputs.ExecutionPlanCapacityUnitsConfiguration): ExecutionPlanCapacityUnitsConfiguration = ExecutionPlanCapacityUnitsConfiguration(
rescoreCapacityUnits = javaType.rescoreCapacityUnits(),
)
}
}