This is the new CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::Bedrock::DataAutomationProject PIIEntitiesConfiguration
Configuration for detecting and redacting Personally Identifiable Information (PII) entities. Specify which PII entity types to detect and the redaction mask mode. If not provided, defaults to ALL entity types with ENTITY_TYPE redaction mask mode.
Syntax
To declare this entity in your CloudFormation template, use the following syntax:
JSON
{ "PiiEntityTypes" :[ String, ... ], "RedactionMaskMode" :String}
YAML
PiiEntityTypes:- StringRedactionMaskMode:String
Properties
PiiEntityTypes-
List of PII entity types to detect/redact in the output. Choose from specific entity types (such as ADDRESS, NAME, EMAIL, PHONE, US_SOCIAL_SECURITY_NUMBER) or specify ALL to detect all supported PII types. If not specified, defaults to ALL.
Required: No
Type: Array of String
Update requires: No interruption
RedactionMaskMode-
Defines how detected PII entities are masked in redacted output files. Set to PII to replace all detected entities with a generic [PII] marker regardless of entity type. Set to ENTITY_TYPE to replace each detected entity with its specific type marker (for example, [NAME], [EMAIL], [ADDRESS]). This setting only applies when detectionMode is set to DETECTION_AND_REDACTION. If not specified, defaults to ENTITY_TYPE.
Required: No
Type: String
Allowed values:
PII | ENTITY_TYPEUpdate requires: No interruption