
com.pulumi.aws.wafv2.kotlin.inputs.WebAclRuleActionBlockCustomResponseResponseHeaderArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.wafv2.kotlin.inputs
import com.pulumi.aws.wafv2.inputs.WebAclRuleActionBlockCustomResponseResponseHeaderArgs.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
/**
*
* @property name Name of the custom header. For custom request header insertion, when AWS WAF inserts the header into the request, it prefixes this name `x-amzn-waf-`, to avoid confusion with the headers that are already in the request. For example, for the header name `sample`, AWS WAF inserts the header `x-amzn-waf-sample`.
* @property value Value of the custom header.
*/
public data class WebAclRuleActionBlockCustomResponseResponseHeaderArgs(
public val name: Output,
public val `value`: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.wafv2.inputs.WebAclRuleActionBlockCustomResponseResponseHeaderArgs =
com.pulumi.aws.wafv2.inputs.WebAclRuleActionBlockCustomResponseResponseHeaderArgs.builder()
.name(name.applyValue({ args0 -> args0 }))
.`value`(`value`.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WebAclRuleActionBlockCustomResponseResponseHeaderArgs].
*/
@PulumiTagMarker
public class WebAclRuleActionBlockCustomResponseResponseHeaderArgsBuilder internal constructor() {
private var name: Output? = null
private var `value`: Output? = null
/**
* @param value Name of the custom header. For custom request header insertion, when AWS WAF inserts the header into the request, it prefixes this name `x-amzn-waf-`, to avoid confusion with the headers that are already in the request. For example, for the header name `sample`, AWS WAF inserts the header `x-amzn-waf-sample`.
*/
@JvmName("dxhfghxxspsekqim")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Value of the custom header.
*/
@JvmName("lateryfiwsayghbt")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value Name of the custom header. For custom request header insertion, when AWS WAF inserts the header into the request, it prefixes this name `x-amzn-waf-`, to avoid confusion with the headers that are already in the request. For example, for the header name `sample`, AWS WAF inserts the header `x-amzn-waf-sample`.
*/
@JvmName("rlrbmqxnhmfjvtut")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Value of the custom header.
*/
@JvmName("dnfnalfxdhjtnijh")
public suspend fun `value`(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): WebAclRuleActionBlockCustomResponseResponseHeaderArgs =
WebAclRuleActionBlockCustomResponseResponseHeaderArgs(
name = name ?: throw PulumiNullFieldException("name"),
`value` = `value` ?: throw PulumiNullFieldException("value"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy