Skip to main content

automated_reasoning_policy_versions

Creates, updates, deletes or gets an automated_reasoning_policy_version resource or lists automated_reasoning_policy_versions in a region

Overview

Nameautomated_reasoning_policy_versions
TypeResource
DescriptionDefinition of AWS::Bedrock::AutomatedReasoningPolicyVersion Resource Type
Idawscc.bedrock.automated_reasoning_policy_versions

Fields

NameDatatypeDescription
policy_arnstringArn of the policy
namestringThe name inherited from the policy
descriptionstringThe description inherited from the policy
versionstringThe version of the policy
definition_hashstringThe hash for this version
created_atstringTime this policy version was created
updated_atstringTime this policy was last updated
policy_idstringThe id of the associated policy
tagsarray
regionstringAWS region.

For more information, see AWS::Bedrock::AutomatedReasoningPolicyVersion.

Methods

NameResourceAccessible byRequired Params
create_resourceautomated_reasoning_policy_versionsINSERTPolicyArn, region
delete_resourceautomated_reasoning_policy_versionsDELETEIdentifier, region
list_resourcesautomated_reasoning_policy_versions_list_onlySELECTregion
get_resourceautomated_reasoning_policy_versionsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual automated_reasoning_policy_version.

SELECT
region,
policy_arn,
name,
description,
version,
definition_hash,
last_updated_definition_hash,
created_at,
updated_at,
policy_id,
tags
FROM awscc.bedrock.automated_reasoning_policy_versions
WHERE
region = 'us-east-1' AND
Identifier = '{{ policy_arn }}|{{ version }}';

INSERT example

Use the following StackQL query and manifest file to create a new automated_reasoning_policy_version resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.bedrock.automated_reasoning_policy_versions (
PolicyArn,
region
)
SELECT
'{{ policy_arn }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.bedrock.automated_reasoning_policy_versions
WHERE
Identifier = '{{ policy_arn }}|{{ version }}' AND
region = 'us-east-1';

Permissions

To operate on the automated_reasoning_policy_versions resource, the following permissions are required:

bedrock:CreateAutomatedReasoningPolicyVersion,
bedrock:GetAutomatedReasoningPolicy,
bedrock:ExportAutomatedReasoningPolicyVersion,
bedrock:TagResource,
bedrock:ListTagsForResource