From 8b084f6ca1a86e8f736909bd2b9d7a151db61a10 Mon Sep 17 00:00:00 2001 From: Lauren Date: Thu, 28 Mar 2019 14:21:26 -0400 Subject: [PATCH] Add new S3 parameter (#4196) --- _includes/v19.1/misc/external-urls.md | 4 ++-- v19.1/change-data-capture.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_includes/v19.1/misc/external-urls.md b/_includes/v19.1/misc/external-urls.md index cceca22284a..62d2a2591b1 100644 --- a/_includes/v19.1/misc/external-urls.md +++ b/_includes/v19.1/misc/external-urls.md @@ -4,12 +4,12 @@ | Location | Scheme | Host | Parameters | |-------------------------------------------------------------+-------------+--------------------------------------------------+----------------------------------------------------------------------------| -| Amazon S3 | `s3` | Bucket name | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` | +| Amazon S3 | `s3` | Bucket name | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_SESSION_TOKEN ` | | Azure | `azure` | N/A (see [Example file URLs](#example-file-urls) | `AZURE_ACCOUNT_KEY`, `AZURE_ACCOUNT_NAME` | | Google Cloud [1](#considerations) | `gs` | Bucket name | `AUTH` (optional): can be `default` or `implicit` | | HTTP [2](#considerations) | `http` | Remote host | N/A | | NFS/Local [3](#considerations) | `nodelocal` | N/A (see [Example file URLs](#example-file-urls) | N/A | -| S3-compatible services [4](#considerations) | `s3` | Bucket name | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_REGION` [5](#considerations) (optional), `AWS_ENDPOINT` | +| S3-compatible services [4](#considerations) | `s3` | Bucket name | `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, `AWS_SESSION_TOKEN, `AWS_REGION` [5](#considerations) (optional), `AWS_ENDPOINT` | {{site.data.alerts.callout_info}} The location parameters often contain special characters that need to be URI-encoded. Use Javascript's [encodeURIComponent](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent) function or Go language's [url.QueryEscape](https://golang.org/pkg/net/url/#QueryEscape) function to URI-encode the parameters. Other languages provide similar functions to URI-encode special characters. diff --git a/v19.1/change-data-capture.md b/v19.1/change-data-capture.md index bc58bdb49f5..1ac27d5ed21 100644 --- a/v19.1/change-data-capture.md +++ b/v19.1/change-data-capture.md @@ -839,7 +839,7 @@ In this example, you'll set up a changefeed for a single-node cluster that is co This will start up the changefeed in the background and return the `job_id`. The changefeed writes to AWS. -10. Monitor your changefeed on the Admin UI (http://localhost:8080/#/metrics/changefeeds/cluster). For more information, see Changefeeds Dashboard. +10. Monitor your changefeed on the Admin UI (http://localhost:8080/#/metrics/changefeeds/cluster). For more information, see [Changefeeds Dashboard](admin-ui-cdc-dashboard.html). 11. When you are done, exit the SQL shell (`\q`).