From a42b85fb4c4913ccf347673299448e0a72f7d1a0 Mon Sep 17 00:00:00 2001 From: Liam Sommer <161324156+liamsommer-mx@users.noreply.github.com> Date: Tue, 16 Jun 2026 15:06:28 +0200 Subject: [PATCH 1/2] Revise AWS Authentication documentation for Credentials usage Updated documentation to reflect the use of a Credentials object for various operations instead of static credentials. --- .../modules/aws/amazon-bedrock.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md b/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md index 43541d8058a..d52235597b4 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md @@ -61,6 +61,13 @@ As of version 3.0.0 of the [AWS Authentication Connector](https://marketplace.me The AWS Authentication Connector supports both **static credentials** and **temporary credentials**. For more information and detailed instructions please refer to the [AWS Authentication Connector documentation page](/appstore/modules/aws/aws-authentication/). +To use other authentication ways, you can create an `Credentials` object in your custom way and pass it to the operations. +- Chat Completions: associate the `Credentials` object to the `ChatCompletionsRequest_Extension` +- Embeddings: associate the `Credentials` object to the `CohereEmbedOptions_Extension` +- Image Generation: associate the `Credentials` object to the `TitanImageOptions_Extension` +- Retrieve: associate the `Credentials` object to the `RetrieveRequest_Extension` +- Retrieve and Generate: associate the `Credentials` object to the `RetrieveAndGenerateRequest_Extension` + ### Syncing Available Models, Knowledge Bases, and Agents You can use the `SNIP_Settings_Admin_ConfigOverview` snippet under **_USE_ME > SyncBedrockMetadata > ReusableUI** on an administrator page to sync models, knowledge bases and agents for the selected region at runtime. Admins on the page first need to configure the settings of the [AWS Authentication Connector](#configure-authentication) module, by selecting the AWS region and how to authenticate. When saving the settings or when you sync the models for the current region, AWS metadata services are called to create persistent objects in the database which you can view in the tables at the bottom of the snippet. @@ -724,7 +731,7 @@ The input and output for this service are shown in the table below: | Input | Output | | --- | --- | -| `ENUM_Region (enumeration)`, `UseStaticCredentials (boolean)` | `Count (integer)` | +| `ENUM_Region (enumeration)`, `Credentials (object)` | `Count (integer)` | The operation returns an integer that indicates how many objects were created or changed during the syncing process. @@ -737,7 +744,7 @@ The input and output for this service are shown in the table below: | Input | Output | | --- | --- | -| `ENUM_Region (enumeration)`, `UseStaticCredentials (boolean)` | `Count (integer)` | +| `ENUM_Region (enumeration)`, `Credentials (object)` | `Count (integer)` | The operation returns an integer that indicates how many objects were created or changed during the syncing process. @@ -750,7 +757,7 @@ The input and output for this service are shown in the table below: | Input | Output | | --- | --- | -| `ENUM_Region (enumeration)`, `UseStaticCredentials (boolean)` | `Count (integer)` | +| `ENUM_Region (enumeration)`, `Credentials (object)` | `Count (integer)` | The operation returns an integer that indicates how many objects were created or changed during the syncing process. From aba40431acb971cf6b3df9eef5d0654d713048ad Mon Sep 17 00:00:00 2001 From: MarkvanMents Date: Wed, 17 Jun 2026 16:59:58 +0200 Subject: [PATCH 2/2] Improve description of creating Credentials object --- .../modules/aws/amazon-bedrock.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md b/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md index d52235597b4..04335ae0b3b 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md @@ -61,19 +61,20 @@ As of version 3.0.0 of the [AWS Authentication Connector](https://marketplace.me The AWS Authentication Connector supports both **static credentials** and **temporary credentials**. For more information and detailed instructions please refer to the [AWS Authentication Connector documentation page](/appstore/modules/aws/aws-authentication/). -To use other authentication ways, you can create an `Credentials` object in your custom way and pass it to the operations. -- Chat Completions: associate the `Credentials` object to the `ChatCompletionsRequest_Extension` -- Embeddings: associate the `Credentials` object to the `CohereEmbedOptions_Extension` -- Image Generation: associate the `Credentials` object to the `TitanImageOptions_Extension` -- Retrieve: associate the `Credentials` object to the `RetrieveRequest_Extension` -- Retrieve and Generate: associate the `Credentials` object to the `RetrieveAndGenerateRequest_Extension` +To use other authentication methods, you can create a `Credentials` object programmatically using custom logic and pass it to the operations using the following associations: + +* Chat Completions: associate the `Credentials` object with the `ChatCompletionsRequest_Extension` +* Embeddings: associate the `Credentials` object with the `CohereEmbedOptions_Extension` +* Image Generation: associate the `Credentials` object with the `TitanImageOptions_Extension` +* Retrieve: associate the `Credentials` object with the `RetrieveRequest_Extension` +* Retrieve and Generate: associate the `Credentials` object with the `RetrieveAndGenerateRequest_Extension` ### Syncing Available Models, Knowledge Bases, and Agents You can use the `SNIP_Settings_Admin_ConfigOverview` snippet under **_USE_ME > SyncBedrockMetadata > ReusableUI** on an administrator page to sync models, knowledge bases and agents for the selected region at runtime. Admins on the page first need to configure the settings of the [AWS Authentication Connector](#configure-authentication) module, by selecting the AWS region and how to authenticate. When saving the settings or when you sync the models for the current region, AWS metadata services are called to create persistent objects in the database which you can view in the tables at the bottom of the snippet. {{% alert color="info" %}} -All models are shown, even those which you cannot accesss. Access to models must be configured in the AWS console. +All models are shown, even those which you cannot access. Access to models must be configured in the AWS console. {{% /alert %}} #### Syncing Resources Using Microflows