Amazon Rekognition Payload Plugin
[!CAUTION]
This plugin is not ready for production use!
This plugin is under experimental development and is not yet ready for production use. It is intended for testing and feedback purposes only. Please use it at your own risk and be aware that it may contain bugs or other issues that could affect its performance or reliability.
Installation
pnpm install @maas/payload-plugin-mux
Usage
import { buildConfig } from 'payload/config'
import { awsRekognitionPlugin } from '@maas/payload-plugin-aws-rekognition'
const config = buildConfig({
plugins: [
awsRekognitionPlugin({
enabled: true,
imagesCollection: 'images',
tagsCollection: 'tags',
aws: {
region: process.env.AWS_REGION!,
credentials: {
accessKeyId: process.env.AWS_ACCESS_KEY_ID!,
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY!,
},
},
debug: true,
}),
],
})