Content Matcher Args
data class ContentMatcherArgs(val content: Output<String>? = null, val jsonPathMatcher: Output<JsonPathMatcherArgs>? = null, val matcher: Output<ContentMatcherMatcher>? = null) : ConvertibleToJava<ContentMatcherArgs>
Optional. Used to perform content matching. This allows matching based on substrings and regular expressions, together with their negations. Only the first 4 MB of an HTTP or HTTPS check's response (and the first 1 MB of a TCP check's response) are examined for purposes of content matching.
Constructors
Link copied to clipboard
constructor(content: Output<String>? = null, jsonPathMatcher: Output<JsonPathMatcherArgs>? = null, matcher: Output<ContentMatcherMatcher>? = null)