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

com.pulumi.awsnative.kendraranking.kotlin.ExecutionPlanArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.kendraranking.kotlin

import com.pulumi.awsnative.kendraranking.ExecutionPlanArgs.builder
import com.pulumi.awsnative.kendraranking.kotlin.inputs.ExecutionPlanCapacityUnitsConfigurationArgs
import com.pulumi.awsnative.kendraranking.kotlin.inputs.ExecutionPlanCapacityUnitsConfigurationArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * A KendraRanking Rescore execution plan
 * @property capacityUnits Capacity units
 * @property description A description for the execution plan
 * @property name A name for the rescore execution plan.
 * @property tags Tags for labeling the execution plan
 */
public data class ExecutionPlanArgs(
    public val capacityUnits: Output? = null,
    public val description: Output? = null,
    public val name: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.kendraranking.ExecutionPlanArgs =
        com.pulumi.awsnative.kendraranking.ExecutionPlanArgs.builder()
            .capacityUnits(capacityUnits?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .description(description?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [ExecutionPlanArgs].
 */
@PulumiTagMarker
public class ExecutionPlanArgsBuilder internal constructor() {
    private var capacityUnits: Output? = null

    private var description: Output? = null

    private var name: Output? = null

    private var tags: Output>? = null

    /**
     * @param value Capacity units
     */
    @JvmName("vpigykxpcifdqsoj")
    public suspend fun capacityUnits(`value`: Output) {
        this.capacityUnits = value
    }

    /**
     * @param value A description for the execution plan
     */
    @JvmName("xardfgrwvcgojhdu")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value A name for the rescore execution plan.
     */
    @JvmName("iocfowqsbtmofbrr")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Tags for labeling the execution plan
     */
    @JvmName("vjsenvjpdnvnhoel")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    @JvmName("csuefejfevmbbgyg")
    public suspend fun tags(vararg values: Output) {
        this.tags = Output.all(values.asList())
    }

    /**
     * @param values Tags for labeling the execution plan
     */
    @JvmName("hdltsiociaiwvljb")
    public suspend fun tags(values: List>) {
        this.tags = Output.all(values)
    }

    /**
     * @param value Capacity units
     */
    @JvmName("kxaoqupwfyjbrcfr")
    public suspend fun capacityUnits(`value`: ExecutionPlanCapacityUnitsConfigurationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.capacityUnits = mapped
    }

    /**
     * @param argument Capacity units
     */
    @JvmName("eyjunbmtyuaitqbf")
    public suspend fun capacityUnits(argument: suspend ExecutionPlanCapacityUnitsConfigurationArgsBuilder.() -> Unit) {
        val toBeMapped = ExecutionPlanCapacityUnitsConfigurationArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.capacityUnits = mapped
    }

    /**
     * @param value A description for the execution plan
     */
    @JvmName("uccuklrrlpipgqoy")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value A name for the rescore execution plan.
     */
    @JvmName("wwjiffghjqkewopc")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Tags for labeling the execution plan
     */
    @JvmName("oubonkgabtgwakeu")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument Tags for labeling the execution plan
     */
    @JvmName("lnndakmlsrtoxwoh")
    public suspend fun tags(argument: List Unit>) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument Tags for labeling the execution plan
     */
    @JvmName("efimftteyuxduwmk")
    public suspend fun tags(vararg argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument Tags for labeling the execution plan
     */
    @JvmName("eljcdmhdatmytqft")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values Tags for labeling the execution plan
     */
    @JvmName("bowxfxyddqhmabyf")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): ExecutionPlanArgs = ExecutionPlanArgs(
        capacityUnits = capacityUnits,
        description = description,
        name = name,
        tags = tags,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy