Public/Resource Property Types/Add-VSElasticBeanstalkApplicationMaxCountRule.ps1
function Add-VSElasticBeanstalkApplicationMaxCountRule { <# .SYNOPSIS Adds an AWS::ElasticBeanstalk::Application.MaxCountRule resource property to the template .DESCRIPTION Adds an AWS::ElasticBeanstalk::Application.MaxCountRule resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html .PARAMETER DeleteSourceFromS3 Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3 PrimitiveType: Boolean Required: False UpdateType: Mutable .PARAMETER Enabled Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled PrimitiveType: Boolean Required: False UpdateType: Mutable .PARAMETER MaxCount Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount PrimitiveType: Integer Required: False UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.ElasticBeanstalk.Application.MaxCountRule')] [cmdletbinding()] Param ( [parameter(Mandatory = $false)] [System.Boolean] $DeleteSourceFromS3, [parameter(Mandatory = $false)] [System.Boolean] $Enabled, [parameter(Mandatory = $false)] [Int] $MaxCount ) 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.ElasticBeanstalk.Application.MaxCountRule' } } |