Checks/Aws/Test-RdsClusterCopyTagsToSnapshots.ps1

function Test-RdsClusterCopyTagsToSnapshots {
    <#
    .SYNOPSIS
        RDS DB cluster has copy tags to snapshots enabled

    .DESCRIPTION
        **RDS DB clusters** are evaluated for the `CopyTagsToSnapshot` setting that propagates cluster tags to their DB snapshots.
        
        *Aurora tagging is configured at the cluster level; instance-level copying isn't supported.*

    .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: rds_cluster_copy_tags_to_snapshots

    [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check rds_cluster_copy_tags_to_snapshots for reference.', 'N/A', 'rds Resources')
}