All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisDataPathValue.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.quicksight.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property dataPathType The type configuration of the field.
 * @property fieldId The field ID of the field that needs to be sorted.
 * @property fieldValue The actual value of the field that needs to be sorted.
 */
public data class AnalysisDataPathValue(
    public val dataPathType: AnalysisDataPathType? = null,
    public val fieldId: String? = null,
    public val fieldValue: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.AnalysisDataPathValue): AnalysisDataPathValue = AnalysisDataPathValue(
            dataPathType = javaType.dataPathType().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisDataPathType.Companion.toKotlin(args0)
                })
            }).orElse(null),
            fieldId = javaType.fieldId().map({ args0 -> args0 }).orElse(null),
            fieldValue = javaType.fieldValue().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy