HttpRouteRuleActionRedirectArgs

data class HttpRouteRuleActionRedirectArgs(val hostRedirect: Output<String>? = null, val httpsRedirect: Output<Boolean>? = null, val pathRedirect: Output<String>? = null, val portRedirect: Output<Int>? = null, val prefixRewrite: Output<String>? = null, val responseCode: Output<String>? = null, val stripQuery: Output<Boolean>? = null) : ConvertibleToJava<HttpRouteRuleActionRedirectArgs>

Constructors

Link copied to clipboard
constructor(hostRedirect: Output<String>? = null, httpsRedirect: Output<Boolean>? = null, pathRedirect: Output<String>? = null, portRedirect: Output<Int>? = null, prefixRewrite: Output<String>? = null, responseCode: Output<String>? = null, stripQuery: Output<Boolean>? = null)

Properties

Link copied to clipboard
val hostRedirect: Output<String>? = null

The host that will be used in the redirect response instead of the one that was supplied in the request.

Link copied to clipboard
val httpsRedirect: Output<Boolean>? = null

If set to true, the URL scheme in the redirected request is set to https.

Link copied to clipboard
val pathRedirect: Output<String>? = null

The path that will be used in the redirect response instead of the one that was supplied in the request. pathRedirect can not be supplied together with prefixRedirect. Supply one alone or neither. If neither is supplied, the path of the original request will be used for the redirect.

Link copied to clipboard
val portRedirect: Output<Int>? = null

The port that will be used in the redirected request instead of the one that was supplied in the request.

Link copied to clipboard
val prefixRewrite: Output<String>? = null

Indicates that during redirection, the matched prefix (or path) should be swapped with this value.

Link copied to clipboard
val responseCode: Output<String>? = null

The HTTP Status code to use for the redirect.

Link copied to clipboard
val stripQuery: Output<Boolean>? = null

If set to true, any accompanying query portion of the original URL is removed prior to redirecting the request.

Functions

Link copied to clipboard
open override fun toJava(): HttpRouteRuleActionRedirectArgs