builder util runtime.Interface.S3Options
Electron-Builder / builder-util-runtime / S3Options
Amazon S3 options.
AWS credentials are required, please see getting your credentials.
Define AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables.
Or in the ~/.aws/credentials.
Example configuration:
{
"build":
"publish": {
"provider": "s3",
"bucket": "bucket-name"
}
}
}
Extends¶
Properties¶
accelerate?¶
readonlyoptionalaccelerate:boolean
If set to true, this will enable the s3 accelerated endpoint These endpoints have a particular format of: ${bucketname}.s3-accelerate.amazonaws.com
acl?¶
readonlyoptionalacl:null|"private"|"public-read"
The ACL. Set to null to not add.
Please see required permissions for the S3 provider.
Default¶
public-read
Overrides¶
bucket¶
readonlybucket:string
The bucket name.
encryption?¶
readonlyoptionalencryption:null|"AES256"|"aws:kms"
Server-side encryption algorithm to use for the object.
endpoint?¶
readonlyoptionalendpoint:null|string
The endpoint URI to send requests to. The default endpoint is built from the configured region.
The endpoint should be a string like https://{service}.{region}.amazonaws.com.
provider¶
readonlyprovider:"s3"
The provider. Must be s3.
Overrides¶
BaseS3Options.provider
region?¶
optionalregion:null|string
The region. Is determined and set automatically when publishing.
storageClass?¶
readonlyoptionalstorageClass:null|"STANDARD"|"REDUCED_REDUNDANCY"|"STANDARD_IA"
The type of storage to use for the object.
Default¶
STANDARD