Interface GuardrailCrossRegionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GuardrailCrossRegionConfigProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:49.487Z")
@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 classA builder forGuardrailCrossRegionConfigPropertystatic final classAn 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
-