com.pulumi.aws.kendra.kotlin.outputs.GetIndexCapacityUnit.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.kendra.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property queryCapacityUnits The amount of extra query capacity for an index and GetQuerySuggestions capacity. For more information, refer to [QueryCapacityUnits](https://docs.aws.amazon.com/kendra/latest/APIReference/API_CapacityUnitsConfiguration.html#Kendra-Type-CapacityUnitsConfiguration-QueryCapacityUnits).
* @property storageCapacityUnits The amount of extra storage capacity for an index. A single capacity unit provides 30 GB of storage space or 100,000 documents, whichever is reached first. Minimum value of 0.
*/
public data class GetIndexCapacityUnit(
public val queryCapacityUnits: Int,
public val storageCapacityUnits: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.kendra.outputs.GetIndexCapacityUnit): GetIndexCapacityUnit = GetIndexCapacityUnit(
queryCapacityUnits = javaType.queryCapacityUnits(),
storageCapacityUnits = javaType.storageCapacityUnits(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy