![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.inputs.DataSourceManifestFileLocationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.DataSourceManifestFileLocationArgs.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
/**
* Amazon S3 manifest file location.
* @property bucket Amazon S3 bucket.
* @property key Amazon S3 key that identifies an object.
*/
public data class DataSourceManifestFileLocationArgs(
public val bucket: Output,
public val key: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DataSourceManifestFileLocationArgs =
com.pulumi.awsnative.quicksight.inputs.DataSourceManifestFileLocationArgs.builder()
.bucket(bucket.applyValue({ args0 -> args0 }))
.key(key.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DataSourceManifestFileLocationArgs].
*/
@PulumiTagMarker
public class DataSourceManifestFileLocationArgsBuilder internal constructor() {
private var bucket: Output? = null
private var key: Output? = null
/**
* @param value Amazon S3 bucket.
*/
@JvmName("qhodjnrvmjwsvieu")
public suspend fun bucket(`value`: Output) {
this.bucket = value
}
/**
* @param value Amazon S3 key that identifies an object.
*/
@JvmName("eukfmxfgmbgqdqjp")
public suspend fun key(`value`: Output) {
this.key = value
}
/**
* @param value Amazon S3 bucket.
*/
@JvmName("qjqnbinyywwwgmyc")
public suspend fun bucket(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.bucket = mapped
}
/**
* @param value Amazon S3 key that identifies an object.
*/
@JvmName("igackespradynycg")
public suspend fun key(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.key = mapped
}
internal fun build(): DataSourceManifestFileLocationArgs = DataSourceManifestFileLocationArgs(
bucket = bucket ?: throw PulumiNullFieldException("bucket"),
key = key ?: throw PulumiNullFieldException("key"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy