H5Pset_fapl_ros3 | R Documentation |
The read-only S3 virtual file driver can be used to read files hosted remotely on Amazon's S3 storage.
H5Pset_fapl_ros3(h5plist, s3credentials = NULL)
h5plist |
H5IdComponent object representing a file access property list. |
s3credentials |
Either |
To access files in a private Amazon S3 bucket you will need to
provide three additional details: The AWS region where the files are
hosted, your AWS access key ID, and your AWS secret access key. More
information on how to obtain AWS access keys can be found at
https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys.
These are provided as a list to the s3credentials
argument. If you
are accessing public data this argument should be NULL
.
## this doesn't work on the Bioconductor Mac build machine
## Not run:
pid <- H5Pcreate("H5P_FILE_ACCESS")
H5Pset_fapl_ros3( pid )
H5Pclose(pid)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.