From a92d70897d103013a5ff76100311ab9896dc8ed4 Mon Sep 17 00:00:00 2001 From: Mike Nguyen Date: Wed, 17 Dec 2025 11:06:26 +0000 Subject: [PATCH] docs: update bedrock metadata Signed-off-by: Mike Nguyen --- .../supported-conversation/aws-bedrock.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-conversation/aws-bedrock.md b/daprdocs/content/en/reference/components-reference/supported-conversation/aws-bedrock.md index 4ec5a68f1d7..f142b94a7d8 100644 --- a/daprdocs/content/en/reference/components-reference/supported-conversation/aws-bedrock.md +++ b/daprdocs/content/en/reference/components-reference/supported-conversation/aws-bedrock.md @@ -33,9 +33,16 @@ The above example uses secrets as plain strings. It is recommended to use a secr | Field | Required | Details | Example | |--------------------|:--------:|---------|---------| -| `endpoint` | N | AWS endpoint for the component to use and connect to emulators. Not recommended for production AWS use. | `http://localhost:4566` | -| `model` | N | The LLM to use. Defaults to Bedrock's default provider model from Amazon. | `amazon.titan-text-express-v1` | -| `cacheTTL` | N | A time-to-live value for a prompt cache to expire. Uses Golang duration format. | `10m` | +| `region` | N | AWS region for the Bedrock service. | `us-east-1` | +| `endpoint` | N | AWS endpoint for the component to use and connect to emulators. Not recommended for production AWS use. | `http://localhost:4566` | +| `accessKey` | N | AWS access key for authentication. It is recommended to use a secret store for this value. | `"AKIAIOSFODNN7EXAMPLE"` | +| `secretKey` | N | AWS secret key for authentication. It is recommended to use a secret store for this value. | `"wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"` | +| `sessionToken` | N | AWS session token for temporary credentials. It is recommended to use a secret store for this value. | `"session-token-example"` | +| `model` | N | The LLM to use. Defaults to Bedrock's default provider model from Amazon. | `amazon.titan-text-express-v1` | +| `cacheTTL` | N | A time-to-live value for a prompt cache to expire. Uses Golang duration format. | `10m` | +| `assumeRoleArn` | N | ARN of the role to assume for authentication. | `arn:aws:iam::123456789012:role/MyRole` | +| `trustAnchorArn` | N | ARN of the trust anchor for authentication. | `arn:aws:rolesanywhere:us-east-1:123456789012:trust-anchor/12345678-1234-1234-1234-123456789012` | +| `trustProfileArn` | N | ARN of the trust profile for authentication. | `arn:aws:rolesanywhere:us-east-1:123456789012:profile/12345678-1234-1234-1234-123456789012` | ## Authenticating AWS