DataProtectionSettingsCustomPattern

data class DataProtectionSettingsCustomPattern(val keywordRegex: String? = null, val patternDescription: String? = null, val patternName: String, val patternRegex: String)

Constructors

Link copied to clipboard
constructor(keywordRegex: String? = null, patternDescription: String? = null, patternName: String, patternRegex: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val keywordRegex: String? = null

The keyword regex for the customer pattern. After there is a match to the pattern regex, the keyword regex is used to search within the proximity of the match. If there is a keyword match, then the match is confirmed. If no keyword regex is provided, the pattern regex match will automatically be confirmed. The format must follow JavaScript regex format. The pattern must be enclosed between slashes, and can have flags behind the second slash. For example, "/ab+c/gi"

Link copied to clipboard

The pattern description for the customer pattern.

Link copied to clipboard

The pattern name for the custom pattern.

Link copied to clipboard

The pattern regex for the customer pattern. The format must follow JavaScript regex format. The pattern must be enclosed between slashes, and can have flags behind the second slash. For example: "/ab+c/gi".