Skip to content

List Automated Reasoning Policies

bedrock_list_automated_reasoning_policies R Documentation

Lists all Automated Reasoning policies in your account, with optional filtering by policy ARN

Description

Lists all Automated Reasoning policies in your account, with optional filtering by policy ARN. This helps you manage and discover existing policies.

Usage

bedrock_list_automated_reasoning_policies(policyArn, nextToken,
  maxResults)

Arguments

policyArn

Optional filter to list only the policy versions with the specified Amazon Resource Name (ARN). If not provided, the DRAFT versions for all policies are listed.

nextToken

The pagination token from a previous request to retrieve the next page of results.

maxResults

The maximum number of policies to return in a single call.

Value

A list with the following syntax:

list(
  automatedReasoningPolicySummaries = list(
    list(
      policyArn = "string",
      name = "string",
      description = "string",
      version = "string",
      policyId = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      updatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

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