Public/Resource Property Types/Add-VSSSMAssociationParameterValues.ps1
function Add-VSSSMAssociationParameterValues { <# .SYNOPSIS Adds an AWS::SSM::Association.ParameterValues resource property to the template .DESCRIPTION Adds an AWS::SSM::Association.ParameterValues resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-parametervalues.html .PARAMETER ParameterValues Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-parametervalues.html#cfn-ssm-association-parametervalues-parametervalues DuplicatesAllowed: False PrimitiveItemType: String Required: True Type: List UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.SSM.Association.ParameterValues')] [cmdletbinding()] Param ( [parameter(Mandatory = $true)] $ParameterValues ) Begin { $obj = [PSCustomObject]@{} } Process { foreach ($psParamKey in $PSBoundParameters.Keys) { $val = $((Get-Variable $psParamKey).Value) if ($val -eq "True") { $val = "true" } elseif ($val -eq "False") { $val = "false" } $obj | Add-Member -MemberType NoteProperty -Name $psParamKey -Value $val } } End { $obj | Add-ObjectDetail -TypeName 'Vaporshell.Resource.SSM.Association.ParameterValues' } } |