After you've navigated to the Auto Exports settings window for your Project and have configured the parameters for your export, you're ready to finalize the Auto Export by pointing it to a destination.
To point it towards S3, first install the S3 Auto Export app available at the DroneDeploy App Market.
After installing the correct app, S3 will show up in the upper left-hand side of the pop-up window after you make your Auto Exports selection. Please be sure to select it, and connect to S3 by clicking the Connect S3 button.
Use your AWS Access Key and AWS Secret Key to connect to S3.
After choosing your desired S3 destination bucket, please press 'Select' in the bottom right-hand corner of your screen:
After choosing 'Select', you'll receive a notification showing that the Auto Export was created.
You can see your configured Auto Exports under the Auto Exports menu section. You can delete an Auto Export by pressing on the three dots next to the name of the Export or you can choose to run the export on the selected map.
Exports from maps uploaded in the future will now be available in your selected folder.
IAM Policy
In order to access all of the functionality provided through the DroneDeploy S3 integration, the following policy should be used:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "DroneDeployFull",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucketMultipartUploads",
"s3:ListAllMyBuckets",
"s3:AbortMultipartUpload",
"s3:ListBucket",
"s3:DeleteObject",
"s3:ListMultipartUploadParts"
],
"Resource": "*"
}
]
}