public/Get-FootbalFixtureContentS3Key.ps1
function Get-FootballFixtureContentS3Key { [CmdletBinding()] param( [Parameter(Mandatory=$true)] [ValidateSet('corners','goals','match','outcomes')] [string]$Content, [Parameter(Mandatory=$true)] [ValidateSet('fbpost','fbstory','instagram','instagram-story')] [string]$Endpoint ) process{ } # process } # function |