enforced_guardrails_configurations
Creates, updates, deletes, gets or lists an enforced_guardrails_configurations resource.
Overview
| Name | enforced_guardrails_configurations |
| Type | Resource |
| Id | aws.bedrock.enforced_guardrails_configurations |
Fields
The following fields are returned by SELECT queries:
- list_enforced_guardrails_configuration
| Name | Datatype | Description |
|---|---|---|
config_id | string | Unique ID for the account enforced configuration. (pattern: <code>[a-z0-9]+</code>) |
created_at | string (date-time) | Timestamp. |
created_by | string | The ARN of the role used to update the configuration. |
guardrail_arn | string | ARN representation for the guardrail. (pattern: <code>arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+</code>) |
guardrail_id | string | Unique ID for the guardrail. (pattern: <code>[a-z0-9]+</code>) |
guardrail_version | string | Numerical guardrail version. (pattern: <code>[1-9][0-9]{0,7}</code>) |
input_tags | string | Whether to honor or ignore input tags at runtime. (HONOR, IGNORE) |
model_enforcement | object | Model-specific information for the enforced guardrail configuration. |
owner | string | Configuration owner type. (ACCOUNT) |
selective_content_guarding | object | Selective content guarding controls for enforced guardrails. |
updated_at | string (date-time) | Timestamp. |
updated_by | string | The ARN of the role used to update the configuration. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_enforced_guardrails_configuration | select | region | nextToken | Lists the account-level enforced guardrail configurations. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
nextToken | string | Opaque continuation token of previous paginated response. |
SELECT examples
- list_enforced_guardrails_configuration
Lists the account-level enforced guardrail configurations.
SELECT
config_id,
created_at,
created_by,
guardrail_arn,
guardrail_id,
guardrail_version,
input_tags,
model_enforcement,
owner,
selective_content_guarding,
updated_at,
updated_by
FROM aws.bedrock.enforced_guardrails_configurations
WHERE region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
;