Skip to content

Get Automated Reasoning Policy Next Scenario

bedrock_get_automated_reasoning_policy_next_scenario R Documentation

Retrieves the next test scenario for validating an Automated Reasoning policy

Description

Retrieves the next test scenario for validating an Automated Reasoning policy. This is used during the interactive policy refinement process to test policy behavior.

Usage

bedrock_get_automated_reasoning_policy_next_scenario(policyArn,
  buildWorkflowId)

Arguments

policyArn

[required] The Amazon Resource Name (ARN) of the Automated Reasoning policy for which you want to get the next test scenario.

buildWorkflowId

[required] The unique identifier of the build workflow associated with the test scenarios.

Value

A list with the following syntax:

list(
  policyArn = "string",
  scenario = list(
    expression = "string",
    alternateExpression = "string",
    expectedResult = "VALID"|"INVALID"|"SATISFIABLE"|"IMPOSSIBLE"|"TRANSLATION_AMBIGUOUS"|"TOO_COMPLEX"|"NO_TRANSLATION",
    ruleIds = list(
      "string"
    )
  )
)

Request syntax

svc$get_automated_reasoning_policy_next_scenario(
  policyArn = "string",
  buildWorkflowId = "string"
)