Interface GuardrailCrossRegionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GuardrailCrossRegionConfigProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-02T11:25:42.810Z")
@Stability(Experimental)
public interface GuardrailCrossRegionConfigProperty
extends software.amazon.jsii.JsiiSerializable
(experimental) GuardrailCrossRegionConfigProperty.
Example:
Guardrail guardrail = Guardrail.Builder.create(this, "bedrockGuardrails") .guardrailName("my-BedrockGuardrails") .description("Guardrail with cross-region configuration for enhanced language support") .crossRegionConfig(GuardrailCrossRegionConfigProperty.builder() .guardrailProfileArn("arn:aws:bedrock:us-east-1:123456789012:guardrail-profile/my-profile") .build()) // Use STANDARD tier for enhanced capabilities .contentFiltersTierConfig(TierConfig.STANDARD) .topicsTierConfig(TierConfig.STANDARD) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forGuardrailCrossRegionConfigProperty
static final class
An implementation forGuardrailCrossRegionConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
(experimental) The arn of thesystem-defined guardrail profile that you're using with your guardrail.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGuardrailProfileArn
(experimental) The arn of thesystem-defined guardrail profile that you're using with your guardrail.Guardrail profiles define the destination AWS Regions where guardrail inference requests can be automatically routed. Using guardrail profiles helps maintain guardrail performance and reliability when demand increases.
Default: - No cross-region configuration
-
builder
-