
com.pulumi.awsnative.elasticloadbalancingv2.kotlin.outputs.TargetGroupMatcher.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.elasticloadbalancingv2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property grpcCode You can specify values between 0 and 99. You can specify multiple values, or a range of values. The default value is 12.
* @property httpCode For Application Load Balancers, you can specify values between 200 and 499, and the default value is 200. You can specify multiple values or a range of values.
*/
public data class TargetGroupMatcher(
public val grpcCode: String? = null,
public val httpCode: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.elasticloadbalancingv2.outputs.TargetGroupMatcher): TargetGroupMatcher = TargetGroupMatcher(
grpcCode = javaType.grpcCode().map({ args0 -> args0 }).orElse(null),
httpCode = javaType.httpCode().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy