GooglePrivacyDlpV2HotwordRuleArgs

data class GooglePrivacyDlpV2HotwordRuleArgs(val hotwordRegex: Output<GooglePrivacyDlpV2RegexArgs>? = null, val likelihoodAdjustment: Output<GooglePrivacyDlpV2LikelihoodAdjustmentArgs>? = null, val proximity: Output<GooglePrivacyDlpV2ProximityArgs>? = null) : ConvertibleToJava<GooglePrivacyDlpV2HotwordRuleArgs>

The rule that adjusts the likelihood of findings within a certain proximity of hotwords.

Constructors

Link copied to clipboard
fun GooglePrivacyDlpV2HotwordRuleArgs(hotwordRegex: Output<GooglePrivacyDlpV2RegexArgs>? = null, likelihoodAdjustment: Output<GooglePrivacyDlpV2LikelihoodAdjustmentArgs>? = null, proximity: Output<GooglePrivacyDlpV2ProximityArgs>? = null)

Functions

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

Properties

Link copied to clipboard

Regular expression pattern defining what qualifies as a hotword.

Link copied to clipboard

Likelihood adjustment to apply to all matching findings.

Link copied to clipboard

Range of characters within which the entire hotword must reside. The total length of the window cannot exceed 1000 characters. The finding itself will be included in the window, so that hotwords can be used to match substrings of the finding itself. Suppose you want Cloud DLP to promote the likelihood of the phone number regex "\(\d{3}\) \d{3}-\d{4}" if the area code is known to be the area code of a company's office. In this case, use the hotword regex "\(xxx\)", where "xxx" is the area code in question. For tabular data, if you want to modify the likelihood of an entire column of findngs, see Hotword example: Set the match likelihood of a table column (https://cloud.google.com/dlp/docs/creating-custom-infotypes-likelihood#match-column-values).