Checks/Aws/Test-GlueDevelopmentEndpointsJobBookmarkEncryptionEnabled.ps1
|
function Test-GlueDevelopmentEndpointsJobBookmarkEncryptionEnabled { <# .SYNOPSIS Glue development endpoint has Job Bookmark encryption enabled .DESCRIPTION **AWS Glue development endpoints** are assessed for an attached **security configuration** where **job bookmark encryption** is enabled. Endpoints lacking a security configuration are also identified. .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: glue_development_endpoints_job_bookmark_encryption_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check glue_development_endpoints_job_bookmark_encryption_enabled for reference.', 'N/A', 'glue Resources') } |