AActionAWS BedrockUpdated September 2026
How do I call a Bedrock model with model-specific parameters?
Short answer: You can invoke model (raw) in AWS Bedrock by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the AWS Bedrock Invoke Model (Raw) action to a workflow, map its 2 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Inputs
The fields this action accepts.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Model ID model_id | string | Required | Bedrock model id |
Request Body (JSON) body | string | Required | Provider-specific JSON body (Anthropic / Stability / Meta / etc. native shape) |
Sample request
{"model_id": "stability.stable-image-ultra-v1:0","body": "e.g. Hi there, thanks for reaching out."}
Returns
{"body": {}}
Use these fields in downstream nodes for routing, logging, or error handling.
Triggered by
Apps that pair well as the trigger for Invoke Model (Raw).
Any of these apps can fire this action as part of a workflow.
FAQ
Questions about Invoke Model (Raw).
What does the Invoke Model (Raw) action do in AWS Bedrock?
Model-specific Invoke API for cases where the unified Converse API doesn't expose what you need (e.g., specific Claude-only parameters, specific generation modes for image/embedding models). Each model has its own request shape — check Bedrock's per-model docs.
What inputs does Invoke Model (Raw) require?
Required: Model ID, Request Body (JSON). Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if AWS Bedrock returns an error?
The run history shows the failed step with its input and the error message AWS Bedrock returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does Invoke Model (Raw) support batch operations?
Run Invoke Model (Raw) inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within AWS Bedrock's rate limits.
More actions
Other AWS Bedrock actions.
Action
Bedrock Converse
The model-agnostic chat API — same message-array shape works across Claude, Llama, Mistral, and other chat-capable Bedrock models. Swap models with a single parameter change. The recommended default for new Bedrock workflows since it abstracts away model-specific request quirks.
ActionKnowledge Bases Retrieve
Semantic-searches a configured Bedrock Knowledge Base (which sits on top of S3-stored documents indexed into a vector store) and returns the most relevant chunks with citations. Saves you from building and managing your own RAG ingestion pipeline.