Public/Resource Property Types/Add-VSGlueJobExecutionProperty.ps1
function Add-VSGlueJobExecutionProperty { <# .SYNOPSIS Adds an AWS::Glue::Job.ExecutionProperty resource property to the template .DESCRIPTION Adds an AWS::Glue::Job.ExecutionProperty resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html .PARAMETER MaxConcurrentRuns Required: False Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns PrimitiveType: Double UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.Glue.Job.ExecutionProperty')] [cmdletbinding()] Param ( [parameter(Mandatory = $false)] [System.Double] $MaxConcurrentRuns ) Begin { $obj = [PSCustomObject]@{} } Process { foreach ($key in $PSBoundParameters.Keys) { $obj | Add-Member -MemberType NoteProperty -Name $key -Value $PSBoundParameters.$key } } End { $obj | Add-ObjectDetail -TypeName 'Vaporshell.Resource.Glue.Job.ExecutionProperty' } } |