Skip to content

Get Policy Engine Summary

bedrockagentcorecontrol_get_policy_engine_summary R Documentation

Retrieves a metadata-only summary of a specific policy engine without decrypting customer content

Description

Retrieves a metadata-only summary of a specific policy engine without decrypting customer content. This lightweight read operation returns resource identifiers, status, timestamps, and the encryption key ARN, but does not include the description or status reasons. Because this operation does not require access to the customer's KMS key, it is suitable for resource discovery, inventory, and integration scenarios where only metadata is needed.

Usage

bedrockagentcorecontrol_get_policy_engine_summary(policyEngineId)

Arguments

policyEngineId

[required] The unique identifier of the policy engine to retrieve the summary for. This must be a valid policy engine ID that exists within the account.

Value

A list with the following syntax:

list(
  policyEngineId = "string",
  name = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  policyEngineArn = "string",
  status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
  encryptionKeyArn = "string"
)

Request syntax

svc$get_policy_engine_summary(
  policyEngineId = "string"
)