Open
Description
Is your feature request related to a problem? Please describe.
The current content moderation is a great feature, it would be really helpful to also support PII detection and moderation on images.
Describe the feature you'd like
If upload a picture of a credit card into the S3 bucket and perform a request like
const imageRequest = JSON.stringify({
bucket: "<myImageBucket>",
key: "<myImage.jpeg>",
edits: {
detectPII: {
minConfidence: 90, // minimum confidence level for inappropriate content
blur: true
}
}
})
Then the PII content on the image will be blurred.
Additional context
Possible implementation by doing an integration with Amazon Comprehend?