S3 Document Storage

S3 is a highly reliable and scalable cloud object storage. S3 comes with a lot of different features like encryption, retention management, or versioning to only mention some of them.

Template

1# yaml-language-server: $schema=https://json-schema.axonivy.com/ivy/12.0.11/ivy.json
2SecuritySystems:
3  default:
4    DocumentStorage:
5      Name: s3
6      Config:
7        Url: https://aws.s3-service.com
8        AccessKey: aaa-aa-aaa
9        SecretKey: zzz-zz-zzz

Reference

 1# URL to S3 Service
 2Url: ""
 3
 4# AccessKey to access the S3 Service 
 5AccessKey: ""
 6
 7# SecretKey to access the S3 Service
 8SecretKey: ""
 9
10# RegionName of the S3 Service
11RegionName: "us-east-1"