![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.cloudfront.kotlin.outputs.ResponseHeadersPolicyCustomHeader.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.cloudfront.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property header The HTTP response header name.
* @property override A Boolean that determines whether CloudFront overrides a response header with the same name received from the origin with the header specified here.
* @property value The value for the HTTP response header.
*/
public data class ResponseHeadersPolicyCustomHeader(
public val `header`: String,
public val `override`: Boolean,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.cloudfront.outputs.ResponseHeadersPolicyCustomHeader): ResponseHeadersPolicyCustomHeader = ResponseHeadersPolicyCustomHeader(
`header` = javaType.`header`(),
`override` = javaType.`override`(),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy