lds/Get-LDSDeliveryFrequency.ps1

function Get-LDSDeliveryFrequency
{
    Param(
        [Parameter(Mandatory=$true)]  [string] $DeliveryFrequencyID,
        [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc',
        [Parameter(Mandatory=$false)] [string] $Section = 'default',
        [Parameter(Mandatory=$false)] [string] $AccountSwitchKey
    )

    $Path = "/lds-api/v3/log-configuration-parameters/delivery-frequencies/$DeliveryFrequencyID`?accountSwitchKey=$AccountSwitchKey"
    
    try {
        $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section
        return $Result
    }
    catch {
        throw $_.Exception 
    }
}