Base
Base class for Data Masking
Usage Documentation
CLASS | DESCRIPTION |
---|---|
DataMasking |
The DataMasking class orchestrates erasing, encrypting, and decrypting |
DataMasking ¶
DataMasking(
provider: BaseProvider | None = None,
raise_on_missing_field: bool = True,
)
The DataMasking class orchestrates erasing, encrypting, and decrypting for the base provider.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
METHOD | DESCRIPTION |
---|---|
decrypt |
Decrypt data using the configured encryption provider. |
encrypt |
Encrypt data using the configured encryption provider. |
erase |
Erase or mask sensitive data in the input. |
Source code in aws_lambda_powertools/utilities/data_masking/base.py
55 56 57 58 59 60 61 62 63 64 |
|
decrypt ¶
decrypt(
data,
provider_options: dict | None = None,
**encryption_context: str
) -> Any
Decrypt data using the configured encryption provider.
PARAMETER | DESCRIPTION |
---|---|
data
|
The data to encrypt.
TYPE:
|
provider_options
|
Provider-specific options for encryption.
TYPE:
|
**encryption_context
|
Additional key-value pairs for encryption context.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
The encrypted data as a base64-encoded string. |
Example
1 2 3 |
|
Source code in aws_lambda_powertools/utilities/data_masking/base.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
|
encrypt ¶
encrypt(
data: dict | Mapping | Sequence | Number,
provider_options: dict | None = None,
**encryption_context: str
) -> str
Encrypt data using the configured encryption provider.
PARAMETER | DESCRIPTION |
---|---|
data
|
The data to encrypt.
TYPE:
|
provider_options
|
Provider-specific options for encryption.
TYPE:
|
**encryption_context
|
Additional key-value pairs for encryption context.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
The encrypted data as a base64-encoded string. |
Example
1 2 3 |
|
Source code in aws_lambda_powertools/utilities/data_masking/base.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
|
erase ¶
erase(
data: Any,
fields: list[str] | None = None,
*,
dynamic_mask: bool | None = None,
custom_mask: str | None = None,
regex_pattern: str | None = None,
mask_format: str | None = None,
masking_rules: dict | None = None
) -> Any
Erase or mask sensitive data in the input.
PARAMETER | DESCRIPTION |
---|---|
data
|
The data to be erased or masked.
TYPE:
|
fields
|
List of field names to be erased or masked.
TYPE:
|
dynamic_mask
|
Whether to use dynamic masking.
TYPE:
|
custom_mask
|
Custom mask to apply instead of the default.
TYPE:
|
regex_pattern
|
Regular expression pattern for identifying data to mask.
TYPE:
|
mask_format
|
Format string for the mask.
TYPE:
|
masking_rules
|
Dictionary of custom masking rules.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Any
|
The data with sensitive information erased or masked. |
Source code in aws_lambda_powertools/utilities/data_masking/base.py
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
|