Setting up SPE AWS Connector configurations using the AWSConfig.json file

You can configure the SPE AWS Connector settings using the
AWSConfig.json
file.

Key sections of AWSConfig.json file

  1. NRTSS3Settings
    1. PollerQueue
    2. ReporterSNS
  2. CommonSetting
    1. QuarantineSetting
    2. ScanActions
    3. ObjectTagSettings
    4. DeploymentSettings
The following sample file provides details about the configurable parameters:
{ "NRTSS3Settings": { "PollerQueue": { "QueueSetting": { "enable": true, "name": "nrtsQueue", "url": "queueURL" }, "batchSize": 10, "pollingIntervalSec": 30 }, "ReporterSNS": { "SNSSetting": { "enable": false, "snsTopicArn": "testSNSTopicArn" } } }, "CommonSetting": { "QuarantineSetting": { "enableQuarantine": false, "bucketName": "bucketname", "folderName": "folder-name" }, "ScanActions": { "avAction": "Delete", "malformedAction": "Report", "encryptedAction": "Report", "containerviolationAction": "Report", "deleteReplaceFileContent": "File has been deleted by SPE AWS S3 Protection, due to security and threats reason." }, "ObjectTagSettings":{ "scanTaggingEnabled": true, "scanVerdictLabel": "scan_verdict", "scanTimeLabel": "scan_time" }, "DeploymentSettings" : { "stackNamespace" : "spe_connector" } } }