Checks/Aws/Test-DynamodbTableProtectedByBackupPlan.ps1
|
function Test-DynamodbTableProtectedByBackupPlan { <# .SYNOPSIS DynamoDB table is protected by a backup plan .DESCRIPTION **DynamoDB tables** are evaluated for inclusion in an **AWS Backup backup plan** through resource assignments, including explicit tables, resource-type wildcards, or all-resources coverage. The result indicates whether a table is governed by scheduled backups and retention defined by the plan. .PARAMETER Check CIEMCheck object containing check metadata. #> [CmdletBinding()] [OutputType([PSCustomObject[]])] param( [Parameter(Mandatory)] [CIEMCheck]$Check ) $ErrorActionPreference = 'Stop' # TODO: Implement check logic based on Prowler check: dynamodb_table_protected_by_backup_plan [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check dynamodb_table_protected_by_backup_plan for reference.', 'N/A', 'dynamodb Resources') } |