mc_alias_set | R Documentation |
Set a new alias for the minio client, possibly using env var defaults.
mc_alias_set(
alias = "minio",
endpoint = Sys.getenv("AWS_S3_ENDPOINT", "s3.amazonaws.com"),
access_key = Sys.getenv("AWS_ACCESS_KEY_ID"),
secret_key = Sys.getenv("AWS_SECRET_ACCESS_KEY"),
scheme = "https"
)
alias |
a short name for this endpoint, default is |
endpoint |
the endpoint domain name |
access_key |
access key (user), reads from AWS env vars by default |
secret_key |
secret access key, reads from AWS env vars by default |
scheme |
https or http (e.g. for local machine only) |
Returns the list from processx::run()
, with components status
,
stdout
, stderr
, and timeout
; invisibly.
https://min.io/docs/minio/linux/reference/minio-mc.html. Note that keys can be omitted for anonymous use.
mc_alias_set()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.