Get Policy Generation Summary
| bedrockagentcorecontrol_get_policy_generation_summary | R Documentation |
Retrieves a metadata-only summary of a specific policy generation request without decrypting customer content¶
Description¶
Retrieves a metadata-only summary of a specific policy generation request without decrypting customer content. This lightweight read operation returns resource identifiers, status, timestamps, and findings, but does not include 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_generation_summary(
policyGenerationId, policyEngineId)
Arguments¶
policyGenerationId |
[required] The unique identifier of the policy generation request to retrieve the summary for. |
policyEngineId |
[required] The identifier of the policy engine associated with the policy generation request. |
Value¶
A list with the following syntax:
list(
policyEngineId = "string",
policyGenerationId = "string",
name = "string",
policyGenerationArn = "string",
resource = list(
arn = "string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
status = "GENERATING"|"GENERATED"|"GENERATE_FAILED"|"DELETE_FAILED",
findings = "string"
)
Request syntax¶
svc$get_policy_generation_summary(
policyGenerationId = "string",
policyEngineId = "string"
)