Skip to content

List Automated Reasoning Policy Build Workflows

bedrock_list_automated_reasoning_policy_build_workflows R Documentation

Lists all build workflows for an Automated Reasoning policy, showing the history of policy creation and modification attempts

Description

Lists all build workflows for an Automated Reasoning policy, showing the history of policy creation and modification attempts.

Usage

bedrock_list_automated_reasoning_policy_build_workflows(policyArn,
  nextToken, maxResults)

Arguments

policyArn

[required] The Amazon Resource Name (ARN) of the Automated Reasoning policy whose build workflows you want to list.

nextToken

A pagination token from a previous request to continue listing build workflows from where the previous request left off.

maxResults

The maximum number of build workflows to return in a single response. Valid range is 1-100.

Value

A list with the following syntax:

list(
  automatedReasoningPolicyBuildWorkflowSummaries = list(
    list(
      policyArn = "string",
      buildWorkflowId = "string",
      status = "SCHEDULED"|"CANCEL_REQUESTED"|"PREPROCESSING"|"BUILDING"|"TESTING"|"COMPLETED"|"FAILED"|"CANCELLED",
      buildWorkflowType = "INGEST_CONTENT"|"REFINE_POLICY"|"IMPORT_POLICY"|"GENERATE_FIDELITY_REPORT"|"GENERATE_POLICY_SCENARIOS",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      updatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_automated_reasoning_policy_build_workflows(
  policyArn = "string",
  nextToken = "string",
  maxResults = 123
)