#[non_exhaustive]pub struct TestCustomDataIdentifierInput {
pub ignore_words: Option<Vec<String>>,
pub keywords: Option<Vec<String>>,
pub maximum_match_distance: i32,
pub regex: Option<String>,
pub sample_text: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ignore_words: Option<Vec<String>>
An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression contains any string in this array, Amazon Macie ignores it. The array can contain as many as 10 ignore words. Each ignore word can contain 4-90 UTF-8 characters. Ignore words are case sensitive.
keywords: Option<Vec<String>>
An array that lists specific character sequences (keywords), one of which must be within proximity (maximumMatchDistance) of the regular expression to match. The array can contain as many as 50 keywords. Each keyword can contain 3-90 UTF-8 characters. Keywords aren't case sensitive.
maximum_match_distance: i32
The maximum number of characters that can exist between text that matches the regular expression and the character sequences specified by the keywords array. Amazon Macie includes or excludes a result based on the proximity of a keyword to text that matches the regular expression. The distance can be 1-300 characters. The default value is 50.
regex: Option<String>
The regular expression (regex) that defines the pattern to match. The expression can contain as many as 512 characters.
sample_text: Option<String>
The sample text to inspect by using the custom data identifier. The text can contain as many as 1,000 characters.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<TestCustomDataIdentifier, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<TestCustomDataIdentifier, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<TestCustomDataIdentifier
>
Creates a new builder-style object to manufacture TestCustomDataIdentifierInput
An array that lists specific character sequences (ignore words) to exclude from the results. If the text matched by the regular expression contains any string in this array, Amazon Macie ignores it. The array can contain as many as 10 ignore words. Each ignore word can contain 4-90 UTF-8 characters. Ignore words are case sensitive.
An array that lists specific character sequences (keywords), one of which must be within proximity (maximumMatchDistance) of the regular expression to match. The array can contain as many as 50 keywords. Each keyword can contain 3-90 UTF-8 characters. Keywords aren't case sensitive.
The maximum number of characters that can exist between text that matches the regular expression and the character sequences specified by the keywords array. Amazon Macie includes or excludes a result based on the proximity of a keyword to text that matches the regular expression. The distance can be 1-300 characters. The default value is 50.
The regular expression (regex) that defines the pattern to match. The expression can contain as many as 512 characters.
The sample text to inspect by using the custom data identifier. The text can contain as many as 1,000 characters.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for TestCustomDataIdentifierInput
impl Sync for TestCustomDataIdentifierInput
impl Unpin for TestCustomDataIdentifierInput
impl UnwindSafe for TestCustomDataIdentifierInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more