Struct google_dlp2::GooglePrivacyDlpV2LargeCustomDictionaryConfig[][src]

pub struct GooglePrivacyDlpV2LargeCustomDictionaryConfig {
    pub output_path: Option<GooglePrivacyDlpV2CloudStoragePath>,
    pub cloud_storage_file_set: Option<GooglePrivacyDlpV2CloudStorageFileSet>,
    pub big_query_field: Option<GooglePrivacyDlpV2BigQueryField>,
}

Configuration for a custom dictionary created from a data source of any size up to the maximum size defined in the limits page. The artifacts of dictionary creation are stored in the specified Google Cloud Storage location. Consider using CustomInfoType.Dictionary for smaller dictionaries that satisfy the size requirements.

This type is not used in any activity, and only used as part of another schema.

Fields

Location to store dictionary artifacts in Google Cloud Storage. These files will only be accessible by project owners and the DLP API. If any of these artifacts are modified, the dictionary is considered invalid and can no longer be used.

Set of files containing newline-delimited lists of dictionary phrases.

Field in a BigQuery table where each cell represents a dictionary phrase.

Trait Implementations

impl Default for GooglePrivacyDlpV2LargeCustomDictionaryConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for GooglePrivacyDlpV2LargeCustomDictionaryConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GooglePrivacyDlpV2LargeCustomDictionaryConfig
[src]

Formats the value using the given formatter. Read more

impl Part for GooglePrivacyDlpV2LargeCustomDictionaryConfig
[src]

Auto Trait Implementations