Public/Resource Property Types/Add-VSEMRClusterScalingTrigger.ps1
function Add-VSEMRClusterScalingTrigger { <# .SYNOPSIS Adds an AWS::EMR::Cluster.ScalingTrigger resource property to the template .DESCRIPTION Adds an AWS::EMR::Cluster.ScalingTrigger resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingtrigger.html .PARAMETER CloudWatchAlarmDefinition Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scalingtrigger.html#cfn-elasticmapreduce-cluster-scalingtrigger-cloudwatchalarmdefinition Required: True Type: CloudWatchAlarmDefinition UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.EMR.Cluster.ScalingTrigger')] [cmdletbinding()] Param ( [parameter(Mandatory = $true)] $CloudWatchAlarmDefinition ) 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.EMR.Cluster.ScalingTrigger' } } |