
com.pulumi.aws.cloudwatch.kotlin.inputs.EventConnectionAuthParametersOauthOauthHttpParametersBodyArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.cloudwatch.kotlin.inputs
import com.pulumi.aws.cloudwatch.inputs.EventConnectionAuthParametersOauthOauthHttpParametersBodyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property isValueSecret Specified whether the value is secret.
* @property key The key for the parameter.
* @property value The value associated with the key. Created and stored in AWS Secrets Manager if is secret.
*/
public data class EventConnectionAuthParametersOauthOauthHttpParametersBodyArgs(
public val isValueSecret: Output? = null,
public val key: Output? = null,
public val `value`: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.cloudwatch.inputs.EventConnectionAuthParametersOauthOauthHttpParametersBodyArgs =
com.pulumi.aws.cloudwatch.inputs.EventConnectionAuthParametersOauthOauthHttpParametersBodyArgs.builder()
.isValueSecret(isValueSecret?.applyValue({ args0 -> args0 }))
.key(key?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EventConnectionAuthParametersOauthOauthHttpParametersBodyArgs].
*/
@PulumiTagMarker
public class EventConnectionAuthParametersOauthOauthHttpParametersBodyArgsBuilder internal constructor() {
private var isValueSecret: Output? = null
private var key: Output? = null
private var `value`: Output? = null
/**
* @param value Specified whether the value is secret.
*/
@JvmName("gurkrxlduuhroeyg")
public suspend fun isValueSecret(`value`: Output) {
this.isValueSecret = value
}
/**
* @param value The key for the parameter.
*/
@JvmName("qmlperocsymgxanl")
public suspend fun key(`value`: Output) {
this.key = value
}
/**
* @param value The value associated with the key. Created and stored in AWS Secrets Manager if is secret.
*/
@JvmName("vtoaafmyyteoaalu")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value Specified whether the value is secret.
*/
@JvmName("lqqfuyasespghrhs")
public suspend fun isValueSecret(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.isValueSecret = mapped
}
/**
* @param value The key for the parameter.
*/
@JvmName("lkirrayfhexoiitw")
public suspend fun key(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.key = mapped
}
/**
* @param value The value associated with the key. Created and stored in AWS Secrets Manager if is secret.
*/
@JvmName("strnpelqfolgxfnj")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): EventConnectionAuthParametersOauthOauthHttpParametersBodyArgs =
EventConnectionAuthParametersOauthOauthHttpParametersBodyArgs(
isValueSecret = isValueSecret,
key = key,
`value` = `value`,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy