ToolJet/plugins/packages/amazonses/lib/operations.json
Arpit ff1d000d99
[Plugins] AWS support profile instance (#5506)
* instance profile support for dynomodb

* updated setup machine script for ec2

* s3

* use EC2/ECS Instance Metadata Service

* using @aws-sdk/credential-providers

* s3 connection from ec2 instance sucess 🚀

* fixes: aws ses email service

* ses connection from ec2 instance sucess 🚀

* athena connection from ec2 instance sucess 🚀

* reverting athena changes

* select IAM auth option from the dropdown

* added docs

* Update setup_machine.sh

* clean up
2023-02-22 14:37:54 +05:30

86 lines
No EOL
2.4 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
"title": "Amazon SES datasource",
"description": "A schema defining Amazon SES datasource",
"type": "api",
"defaults": {},
"properties": {
"operation": {
"label": "Operation",
"key": "operation",
"type": "dropdown-component-flip",
"description": "Single select dropdown for operation",
"list": [
{
"value": "mail_service",
"name": "Email service"
}
]
},
"mail_service": {
"send_mail_to": {
"label": "Send mail to",
"key": "send_mail_to",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter email recipient(s)",
"placeholder": "{{['dev@tooljet.io']}}",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"cc_to": {
"label": "CC mail to",
"key": "cc_to",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter CC recipient(s)",
"placeholder": "{{['dev@tooljet.io']}}",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"bcc_to": {
"label": "BCC mail to",
"key": "bcc_to",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter BCC recipient(s)",
"placeholder": "{{['dev@tooljet.io']}}",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"send_mail_from": {
"label": "Send mail from",
"key": "send_mail_from",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter email Sender",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"subject": {
"label": "Subject",
"key": "subject",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter subject",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"body": {
"label": "Body",
"key": "body",
"type": "codehinter",
"description": "Supports HTML",
"height": "150px",
"mode": "handlebars",
"lineNumbers": true
}
}
}
}