com.pulumi.awsnative.pipes.kotlin.outputs.PipeMultiMeasureMapping.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.pipes.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property multiMeasureAttributeMappings Mappings that represent multiple source event fields mapped to measures in the same Timestream for LiveAnalytics record.
* @property multiMeasureName The name of the multiple measurements per record (multi-measure).
*/
public data class PipeMultiMeasureMapping(
public val multiMeasureAttributeMappings: List,
public val multiMeasureName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.pipes.outputs.PipeMultiMeasureMapping): PipeMultiMeasureMapping = PipeMultiMeasureMapping(
multiMeasureAttributeMappings = javaType.multiMeasureAttributeMappings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.pipes.kotlin.outputs.PipeMultiMeasureAttributeMapping.Companion.toKotlin(args0)
})
}),
multiMeasureName = javaType.multiMeasureName(),
)
}
}