![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.customerprofiles.kotlin.inputs.DomainS3ExportingConfigArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.customerprofiles.kotlin.inputs
import com.pulumi.awsnative.customerprofiles.inputs.DomainS3ExportingConfigArgs.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
/**
* The S3 location where Identity Resolution Jobs write result files.
* @property s3BucketName The name of the S3 bucket where Identity Resolution Jobs write result files.
* @property s3KeyName The S3 key name of the location where Identity Resolution Jobs write result files.
*/
public data class DomainS3ExportingConfigArgs(
public val s3BucketName: Output,
public val s3KeyName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.customerprofiles.inputs.DomainS3ExportingConfigArgs =
com.pulumi.awsnative.customerprofiles.inputs.DomainS3ExportingConfigArgs.builder()
.s3BucketName(s3BucketName.applyValue({ args0 -> args0 }))
.s3KeyName(s3KeyName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DomainS3ExportingConfigArgs].
*/
@PulumiTagMarker
public class DomainS3ExportingConfigArgsBuilder internal constructor() {
private var s3BucketName: Output? = null
private var s3KeyName: Output? = null
/**
* @param value The name of the S3 bucket where Identity Resolution Jobs write result files.
*/
@JvmName("oomjcdasmkynxevs")
public suspend fun s3BucketName(`value`: Output) {
this.s3BucketName = value
}
/**
* @param value The S3 key name of the location where Identity Resolution Jobs write result files.
*/
@JvmName("hqsujskedvskqaao")
public suspend fun s3KeyName(`value`: Output) {
this.s3KeyName = value
}
/**
* @param value The name of the S3 bucket where Identity Resolution Jobs write result files.
*/
@JvmName("bpywccclsocswnna")
public suspend fun s3BucketName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.s3BucketName = mapped
}
/**
* @param value The S3 key name of the location where Identity Resolution Jobs write result files.
*/
@JvmName("dlqrttldewglkrux")
public suspend fun s3KeyName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.s3KeyName = mapped
}
internal fun build(): DomainS3ExportingConfigArgs = DomainS3ExportingConfigArgs(
s3BucketName = s3BucketName ?: throw PulumiNullFieldException("s3BucketName"),
s3KeyName = s3KeyName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy