![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.apigatewayv2.kotlin.inputs.IntegrationResponseParameterArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.apigatewayv2.kotlin.inputs
import com.pulumi.awsnative.apigatewayv2.inputs.IntegrationResponseParameterArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* response parameter
* @property destination
* @property source
*/
public data class IntegrationResponseParameterArgs(
public val destination: Output? = null,
public val source: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.apigatewayv2.inputs.IntegrationResponseParameterArgs =
com.pulumi.awsnative.apigatewayv2.inputs.IntegrationResponseParameterArgs.builder()
.destination(destination?.applyValue({ args0 -> args0 }))
.source(source?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationResponseParameterArgs].
*/
@PulumiTagMarker
public class IntegrationResponseParameterArgsBuilder internal constructor() {
private var destination: Output? = null
private var source: Output? = null
/**
* @param value
*/
@JvmName("cplbytejkaxvmeyv")
public suspend fun destination(`value`: Output) {
this.destination = value
}
/**
* @param value
*/
@JvmName("ehxbawyixqpjbbrl")
public suspend fun source(`value`: Output) {
this.source = value
}
/**
* @param value
*/
@JvmName("orbamrdegmqrubmb")
public suspend fun destination(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.destination = mapped
}
/**
* @param value
*/
@JvmName("oetgghnsnaajaktk")
public suspend fun source(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.source = mapped
}
internal fun build(): IntegrationResponseParameterArgs = IntegrationResponseParameterArgs(
destination = destination,
source = source,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy