Skip to content

Get Automated Reasoning Policy

bedrock_get_automated_reasoning_policy R Documentation

Retrieves details about an Automated Reasoning policy or policy version

Description

Retrieves details about an Automated Reasoning policy or policy version. Returns information including the policy definition, metadata, and timestamps.

Usage

bedrock_get_automated_reasoning_policy(policyArn)

Arguments

policyArn

[required] The Amazon Resource Name (ARN) of the Automated Reasoning policy to retrieve. Can be either the unversioned ARN for the draft policy or an ARN for a specific policy version.

Value

A list with the following syntax:

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

Request syntax

svc$get_automated_reasoning_policy(
  policyArn = "string"
)