Skip to main content

enforced_guardrails_configurations

Creates, updates, deletes, gets or lists an enforced_guardrails_configurations resource.

Overview

Nameenforced_guardrails_configurations
TypeResource
Idaws.bedrock.enforced_guardrails_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
config_idstringUnique ID for the account enforced configuration. (pattern: <code>[a-z0-9]+</code>)
created_atstring (date-time)Timestamp.
created_bystringThe ARN of the role used to update the configuration.
guardrail_arnstringARN representation for the guardrail. (pattern: <code>arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+</code>)
guardrail_idstringUnique ID for the guardrail. (pattern: <code>[a-z0-9]+</code>)
guardrail_versionstringNumerical guardrail version. (pattern: <code>[1-9][0-9]{0,7}</code>)
input_tagsstringWhether to honor or ignore input tags at runtime. (HONOR, IGNORE)
model_enforcementobjectModel-specific information for the enforced guardrail configuration.
ownerstringConfiguration owner type. (ACCOUNT)
selective_content_guardingobjectSelective content guarding controls for enforced guardrails.
updated_atstring (date-time)Timestamp.
updated_bystringThe ARN of the role used to update the configuration.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_enforced_guardrails_configurationselectregionnextTokenLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
nextTokenstringOpaque continuation token of previous paginated response.

SELECT examples

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 }}'
;