Checks/Aws/Test-SagemakerModelsNetworkIsolationEnabled.ps1
|
function Test-SagemakerModelsNetworkIsolationEnabled { <# .SYNOPSIS Amazon SageMaker model has network isolation enabled .DESCRIPTION **SageMaker models** are evaluated for **network isolation** status, indicating whether model containers are blocked from initiating network connections during hosting/inference, aside from required service control traffic. .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: sagemaker_models_network_isolation_enabled [CIEMScanResult]::Create($Check, 'MANUAL', 'This check requires manual implementation. See Prowler check sagemaker_models_network_isolation_enabled for reference.', 'N/A', 'sagemaker Resources') } |