com.pulumi.aws.cloudwatch.kotlin.inputs.EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgs.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.cloudwatch.kotlin.inputs
import com.pulumi.aws.cloudwatch.inputs.EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgs.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 EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgs(
public val isValueSecret: Output? = null,
public val key: Output? = null,
public val `value`: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.cloudwatch.inputs.EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgs =
com.pulumi.aws.cloudwatch.inputs.EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgs.builder()
.isValueSecret(isValueSecret?.applyValue({ args0 -> args0 }))
.key(key?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgs].
*/
@PulumiTagMarker
public class EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgsBuilder 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("niqgyegiypdpgrlv")
public suspend fun isValueSecret(`value`: Output) {
this.isValueSecret = value
}
/**
* @param value The key for the parameter.
*/
@JvmName("xsrsnxcnwvpbbalb")
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("hwpmsswuanfrfvxw")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value Specified whether the value is secret.
*/
@JvmName("pjwsagrjrvwnjckm")
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("rhpionjfenecjpyp")
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("fokjkakqhpqgycnd")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgs =
EventConnectionAuthParametersOauthOauthHttpParametersHeaderArgs(
isValueSecret = isValueSecret,
key = key,
`value` = `value`,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy