Skip to content

List Policy Engine Summaries

bedrockagentcorecontrol_list_policy_engine_summaries R Documentation

Retrieves a paginated list of metadata-only policy engine summaries without decrypting customer content

Description

Retrieves a paginated list of metadata-only policy engine summaries without decrypting customer content. This lightweight read operation returns resource identifiers, status, and timestamps for each policy engine, but does not include descriptions 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_list_policy_engine_summaries(nextToken,
  maxResults)

Arguments

nextToken

A pagination token returned from a previous list_policy_engine_summaries call. Use this token to retrieve the next page of results when the response is paginated.

maxResults

The maximum number of policy engine summaries to return in a single response.

Value

A list with the following syntax:

list(
  policyEngines = list(
    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"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_policy_engine_summaries(
  nextToken = "string",
  maxResults = 123
)