plusplusjiajia commented on code in PR #893: URL: https://github.com/apache/iceberg-cpp/pull/893#discussion_r3855390720
########## mkdocs/docs/file-io.md: ########## @@ -56,6 +56,48 @@ For a REST catalog, set `io-impl` to the registry name. If it is omitted, the REST catalog uses `ResolvingFileIO` and selects a registered implementation for each file location's scheme. +## Configure S3 + +| Key | Example | Description | +|---|---|---| +| `s3.access-key-id` | `admin` | Static access key ID; must be set together with the secret key | +| `s3.secret-access-key` | `password` | Static secret access key | +| `s3.session-token` | `AQoDYXdzEJr...` | Session token, for temporary credentials. Ignored unless both static keys are set | +| `client.region` | `us-east-1` | Region to sign requests for | +| `s3.endpoint` | `https://127.0.0.1:9000` | Endpoint to use instead of the AWS one | +| `s3.path-style-access` | `true` | Address buckets as a path (`endpoint/bucket`) instead of a virtual host (`bucket.endpoint`). Only takes effect together with `s3.endpoint` | +| `s3.ssl.enabled` | `true` | Scheme to use for the endpoint, overriding the one it carries | Review Comment: @wgtmac Done — moved to their own table, marked iceberg-cpp-specific. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
