latestOpenAPI 3.0.32026-08-10213848.7 KB

ff4cd0352ad5

Get policy IDs that back up the given FRNs

Returns a mapping of FRNs to the list of policy IDs (application IDs) that back up each resource

post/backup-and-dr/resources/policies

Request body

frnsstring[] required

Array of FRNs (Firefly Resource Names) to query

Example request

{
  "frns": [
    "arn:aws:ec2:us-east-1:123456789012:instance/i-1234567890abcdef0",
    "arn:aws:s3:::my-bucket"
  ]
}

Response

Mapping of FRNs to policy IDs

object required

Example response

{
  "arn:aws:ec2:us-east-1:123456789012:instance/i-1234567890abcdef0": [
    "550e8400-e29b-41d4-a716-446655440000",
    "6ba7b810-9dad-11d1-80b4-00c04fd430c8"
  ],
  "arn:aws:s3:::my-bucket": [
    "550e8400-e29b-41d4-a716-446655440000"
  ]
}