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

com.pulumi.awsnative.databrew.kotlin.inputs.RecipeS3LocationArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.databrew.kotlin.inputs

import com.pulumi.awsnative.databrew.inputs.RecipeS3LocationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Input location
 * @property bucket
 * @property key
 */
public data class RecipeS3LocationArgs(
    public val bucket: Output,
    public val key: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.databrew.inputs.RecipeS3LocationArgs =
        com.pulumi.awsnative.databrew.inputs.RecipeS3LocationArgs.builder()
            .bucket(bucket.applyValue({ args0 -> args0 }))
            .key(key?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [RecipeS3LocationArgs].
 */
@PulumiTagMarker
public class RecipeS3LocationArgsBuilder internal constructor() {
    private var bucket: Output? = null

    private var key: Output? = null

    /**
     * @param value
     */
    @JvmName("liyygdqarmyqdhlj")
    public suspend fun bucket(`value`: Output) {
        this.bucket = value
    }

    /**
     * @param value
     */
    @JvmName("lyixieijiphggunb")
    public suspend fun key(`value`: Output) {
        this.key = value
    }

    /**
     * @param value
     */
    @JvmName("vxgduckgybkbjcwy")
    public suspend fun bucket(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.bucket = mapped
    }

    /**
     * @param value
     */
    @JvmName("sydaltwqpqswysth")
    public suspend fun key(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.key = mapped
    }

    internal fun build(): RecipeS3LocationArgs = RecipeS3LocationArgs(
        bucket = bucket ?: throw PulumiNullFieldException("bucket"),
        key = key,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy