RegionUrlMapHostRule

data class RegionUrlMapHostRule(val description: String? = null, val hosts: List<String>, val pathMatcher: String)

Constructors

Link copied to clipboard
constructor(description: String? = null, hosts: List<String>, pathMatcher: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

An optional description of this HostRule. Provide this property when you create the resource.

Link copied to clipboard

The list of host patterns to match. They must be valid hostnames, except * will match any string of (a-z0-9-.*). In that case, * must be the first character and must be followed in the pattern by either - or ..

Link copied to clipboard

The name of the PathMatcher to use to match the path portion of the URL if the hostRule matches the URL's host portion.