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