ApplicationUrlDispatchRulesDispatchRuleArgs

data class ApplicationUrlDispatchRulesDispatchRuleArgs(val domain: Output<String>? = null, val path: Output<String>, val service: Output<String>) : ConvertibleToJava<ApplicationUrlDispatchRulesDispatchRuleArgs>

Constructors

constructor(domain: Output<String>? = null, path: Output<String>, service: Output<String>)

Properties

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

Domain name to match against. The wildcard "" is supported if specified before a period: ".". Defaults to matching all domains: "*".

Link copied to clipboard
val path: Output<String>

Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.

Link copied to clipboard
val service: Output<String>

Pathname within the host. Must start with a "/". A single "*" can be included at the end of the path. The sum of the lengths of the domain and path may not exceed 100 characters.

Functions

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