Get Policy Engine
| bedrockagentcorecontrol_get_policy_engine | R Documentation |
Retrieves detailed information about a specific policy engine within the AgentCore Policy system¶
Description¶
Retrieves detailed information about a specific policy engine within the AgentCore Policy system. This operation returns the complete policy engine configuration, metadata, and current status, allowing administrators to review and manage policy engine settings.
Usage¶
bedrockagentcorecontrol_get_policy_engine(policyEngineId)
Arguments¶
policyEngineId |
[required] The unique identifier of the policy engine to be retrieved. 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",
description = "string",
statusReasons = list(
"string"
)
)
Request syntax¶
svc$get_policy_engine(
policyEngineId = "string"
)