DataProtectionSettingsCustomPatternArgs

data class DataProtectionSettingsCustomPatternArgs(val keywordRegex: Output<String>? = null, val patternDescription: Output<String>? = null, val patternName: Output<String>, val patternRegex: Output<String>) : ConvertibleToJava<DataProtectionSettingsCustomPatternArgs>

Constructors

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

Properties

Link copied to clipboard
val keywordRegex: Output<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
val patternDescription: Output<String>? = null

The pattern description for the customer pattern.

Link copied to clipboard
val patternName: Output<String>

The pattern name for the custom pattern.

Link copied to clipboard
val patternRegex: Output<String>

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".

Functions

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