com.pulumi.aws.customerprofiles.kotlin.inputs.DomainMatchingExportingConfigArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.customerprofiles.kotlin.inputs
import com.pulumi.aws.customerprofiles.inputs.DomainMatchingExportingConfigArgs.builder
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.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property s3Exporting
*/
public data class DomainMatchingExportingConfigArgs(
public val s3Exporting: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.customerprofiles.inputs.DomainMatchingExportingConfigArgs =
com.pulumi.aws.customerprofiles.inputs.DomainMatchingExportingConfigArgs.builder()
.s3Exporting(s3Exporting?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [DomainMatchingExportingConfigArgs].
*/
@PulumiTagMarker
public class DomainMatchingExportingConfigArgsBuilder internal constructor() {
private var s3Exporting: Output? = null
/**
* @param value
*/
@JvmName("mxmpwqplyqhyjobn")
public suspend fun s3Exporting(`value`: Output) {
this.s3Exporting = value
}
/**
* @param value
*/
@JvmName("mumsiqgabhkuewte")
public suspend fun s3Exporting(`value`: DomainMatchingExportingConfigS3ExportingArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.s3Exporting = mapped
}
/**
* @param argument
*/
@JvmName("emevwatrpjqnrpgb")
public suspend fun s3Exporting(argument: suspend DomainMatchingExportingConfigS3ExportingArgsBuilder.() -> Unit) {
val toBeMapped = DomainMatchingExportingConfigS3ExportingArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.s3Exporting = mapped
}
internal fun build(): DomainMatchingExportingConfigArgs = DomainMatchingExportingConfigArgs(
s3Exporting = s3Exporting,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy