惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
Engineering at Meta
Engineering at Meta
腾讯CDC
宝玉的分享
宝玉的分享
H
Help Net Security
I
InfoQ
博客园 - Franky
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
博客园_首页
美团技术团队
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
The Cloudflare Blog
博客园 - 司徒正美
Vercel News
Vercel News
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
月光博客
月光博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Testing Bedrock Guardrails without the AWS bill
Lucas Vieira · 2026-04-26 · via DEV Community

Lucas Vieira

Originally published on fakecloud.dev.

Bedrock Guardrails are one of the better pieces of AWS infrastructure in the last year. You define a policy — filter out hate, block PII leakage, deny certain topics, enforce contextual grounding on RAG outputs — and either apply it to an entire model invocation via guardrailIdentifier, or call ApplyGuardrail directly on arbitrary text. Useful, sharp, limited-in-scope.

The problem is testing. A serious guardrail config is an iterative thing — you tune filter strengths, add denied topics, tweak word filters, and test each change. Each test-cycle turn against real AWS costs tokens and time. And if the thing you're trying to guard against is LLM output, you're paying for the model call and the guardrail evaluation.

fakecloud runs the full Bedrock Guardrails surface locally. CreateGuardrail, versioning, UpdateGuardrail, DeleteGuardrail, ApplyGuardrail, ListGuardrails — the whole thing. More interestingly, the data plane actually evaluates content. PII detection works. Content filters return sensible scores on real test text. You can write tests that verify your guardrail actually blocks what you think it blocks.

The shape of the problem

The standard AWS recipe, cleaned up:

import boto3

bedrock = boto3.client('bedrock', region_name='us-east-1')

g = bedrock.create_guardrail(
    name='customer-facing-v1',
    contentPolicyConfig={
        'filtersConfig': [
            {'type': 'HATE', 'inputStrength': 'HIGH', 'outputStrength': 'HIGH'},
            {'type': 'VIOLENCE', 'inputStrength': 'HIGH', 'outputStrength': 'HIGH'},
            {'type': 'SEXUAL', 'inputStrength': 'HIGH', 'outputStrength': 'HIGH'},
            {'type': 'INSULTS', 'inputStrength': 'MEDIUM', 'outputStrength': 'MEDIUM'},
        ],
    },
    sensitiveInformationPolicyConfig={
        'piiEntitiesConfig': [
            {'type': 'EMAIL', 'action': 'BLOCK'},
            {'type': 'PHONE', 'action': 'BLOCK'},
            {'type': 'CREDIT_DEBIT_CARD_NUMBER', 'action': 'BLOCK'},
        ],
    },
    topicPolicyConfig={
        'topicsConfig': [
            {
                'name': 'medical-advice',
                'definition': 'Providing specific medical diagnoses or treatment recommendations',
                'examples': ['What dose should I take?', 'Do I have cancer?'],
                'type': 'DENY',
            },
        ],
    },
    blockedInputMessaging='Cannot process this input.',
    blockedOutputsMessaging='Cannot respond to this.',
)

Enter fullscreen mode Exit fullscreen mode

Now you want to test: does an email containing bob@example.com trigger the EMAIL filter and return the blocked-input message? Does a prompt asking "what medication should I take for my headache" get denied via the medical-advice topic? Does the HATE filter catch slurs at HIGH strength?

Against real AWS: each of those is an API call that costs a few cents, takes a second, and requires valid credentials. You'll do 50 of these across a tuning session. Repeated for each PR that touches guardrail config.

Against fakecloud

Same code, different endpoint:

import boto3

bedrock = boto3.client('bedrock',
    endpoint_url='http://localhost:4566',
    aws_access_key_id='test',
    aws_secret_access_key='test',
    region_name='us-east-1')

# same create_guardrail call as above
g = bedrock.create_guardrail(...)

rt = boto3.client('bedrock-runtime',
    endpoint_url='http://localhost:4566',
    aws_access_key_id='test',
    aws_secret_access_key='test',
    region_name='us-east-1')

resp = rt.apply_guardrail(
    guardrailIdentifier=g['guardrailId'],
    guardrailVersion='DRAFT',
    source='INPUT',
    content=[{'text': {'text': 'contact me at bob@example.com'}}],
)

assert resp['action'] == 'GUARDRAIL_INTERVENED'
assert resp['outputs'][0]['text'] == 'Cannot process this input.'
assert any(a['type'] == 'EMAIL' for a in resp['assessments'][0]['sensitiveInformationPolicy']['piiEntities'])

Enter fullscreen mode Exit fullscreen mode

Real PII detection — the email is caught. Real blocked-input messaging returned. Assessments returned in the shape real AWS would return.

No tokens. No AWS bill. No credentials. 30ms.

What's actually evaluated

fakecloud's guardrail evaluator ships opinionated implementations of each policy type. Concrete checks you can rely on in tests:

  • PII entities: regex + context for email, phone (various formats), credit card (Luhn), SSN, IP, URL, name, address hints.
  • Content filters: keyword + pattern matching tuned for the common categories. HIGH strength catches more, LOW catches less — same directional behavior as real AWS.
  • Topic filters: pattern matching against the topic definition + examples you provided. Won't pass a Stanford NLI benchmark, but does what you need for testing: asserts the policy fires on obvious positives and passes obvious negatives.
  • Word filters: exact match + stemming.
  • Regex filters: the regex you supplied, as-is.

It's shape-correct evaluation. For tests that verify "my guardrail config blocks what I intended," that's exactly what you need. If you want bulletproof production-grade content filtering, you're going to tune against real AWS or roll your own anyway — this gets you 95% of the iteration speed.

Versioning

# publish a version
v = bedrock.create_guardrail_version(
    guardrailIdentifier=g['guardrailId'],
    description='initial pinned version for prod',
)

# list versions
versions = bedrock.list_guardrails(guardrailIdentifier=g['guardrailId'])

# apply a specific version in production
rt.apply_guardrail(
    guardrailIdentifier=g['guardrailId'],
    guardrailVersion=v['version'],  # '1'
    source='INPUT',
    content=[{'text': {'text': '...'}}],
)

Enter fullscreen mode Exit fullscreen mode

DRAFT is mutable. Numbered versions (1, 2, 3, ...) are immutable once created — same as real AWS. Your prod code should pin. Your dev iteration happens against DRAFT.

A realistic test suite

import { FakeCloud } from "fakecloud";
import { BedrockRuntimeClient, ApplyGuardrailCommand } from "@aws-sdk/client-bedrock-runtime";
import { BedrockClient, CreateGuardrailCommand } from "@aws-sdk/client-bedrock";

const fc = new FakeCloud();
const control = new BedrockClient({ endpoint: "http://localhost:4566" });
const rt = new BedrockRuntimeClient({ endpoint: "http://localhost:4566" });

let guardrailId: string;

beforeAll(async () => {
  const created = await control.send(new CreateGuardrailCommand({
    name: "test-guardrail",
    contentPolicyConfig: {
      filtersConfig: [
        { type: "HATE", inputStrength: "HIGH", outputStrength: "HIGH" },
      ],
    },
    sensitiveInformationPolicyConfig: {
      piiEntitiesConfig: [
        { type: "EMAIL", action: "BLOCK" },
        { type: "PHONE", action: "ANONYMIZE" },
      ],
    },
    blockedInputMessaging: "Blocked.",
    blockedOutputsMessaging: "Blocked.",
  }));
  guardrailId = created.guardrailId!;
});

beforeEach(() => fc.reset({ preserve: ["bedrock:guardrails"] }));

test("blocks input containing email", async () => {
  const resp = await rt.send(new ApplyGuardrailCommand({
    guardrailIdentifier: guardrailId,
    guardrailVersion: "DRAFT",
    source: "INPUT",
    content: [{ text: { text: "contact me at alice@example.com" } }],
  }));

  expect(resp.action).toBe("GUARDRAIL_INTERVENED");
  expect(resp.outputs?.[0].text).toBe("Blocked.");
});

test("anonymizes phone in output", async () => {
  const resp = await rt.send(new ApplyGuardrailCommand({
    guardrailIdentifier: guardrailId,
    guardrailVersion: "DRAFT",
    source: "OUTPUT",
    content: [{ text: { text: "call me at 555-123-4567 tomorrow" } }],
  }));

  expect(resp.action).toBe("GUARDRAIL_INTERVENED");
  expect(resp.outputs?.[0].text).not.toContain("555-123-4567");
});

test("passes clean input through", async () => {
  const resp = await rt.send(new ApplyGuardrailCommand({
    guardrailIdentifier: guardrailId,
    guardrailVersion: "DRAFT",
    source: "INPUT",
    content: [{ text: { text: "what's the weather in Paris?" } }],
  }));

  expect(resp.action).toBe("NONE");
});

Enter fullscreen mode Exit fullscreen mode

These run in milliseconds, are deterministic, and test the thing that matters — that your guardrail config enforces what you think it enforces.

Why this matters for agent systems

Guardrails become critical when you're building tool-using agents. A tool call that leaks customer PII is a real incident; a model output that contains violence content is a real incident. You want those failure modes caught in CI, not in production.

The pattern:

  1. Compose the guardrail config as code (Terraform / CDK) alongside your agent definition.
  2. In CI, deploy the guardrail to fakecloud, run a test matrix of adversarial inputs through your agent, assert that the guardrail fires (or doesn't fire) where expected.
  3. On merge to main, deploy the same config to real AWS.

The first two steps cost nothing. The third is the one that actually consumes budget.

This is the test loop real AWS makes nearly impossible — not because of technical obstacles, but because the cost-per-iteration is too high for the number of iterations you actually need.

Links