Public/Resource Property Types/Add-VSElasticBeanstalkApplicationApplicationVersionLifecycleConfig.ps1
function Add-VSElasticBeanstalkApplicationApplicationVersionLifecycleConfig { <# .SYNOPSIS Adds an AWS::ElasticBeanstalk::Application.ApplicationVersionLifecycleConfig resource property to the template .DESCRIPTION Adds an AWS::ElasticBeanstalk::Application.ApplicationVersionLifecycleConfig resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationversionlifecycleconfig.html .PARAMETER MaxAgeRule Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationversionlifecycleconfig.html#cfn-elasticbeanstalk-application-applicationversionlifecycleconfig-maxagerule Required: False Type: MaxAgeRule UpdateType: Mutable .PARAMETER MaxCountRule Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationversionlifecycleconfig.html#cfn-elasticbeanstalk-application-applicationversionlifecycleconfig-maxcountrule Required: False Type: MaxCountRule UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.ElasticBeanstalk.Application.ApplicationVersionLifecycleConfig')] [cmdletbinding()] Param ( [parameter(Mandatory = $false)] $MaxAgeRule, [parameter(Mandatory = $false)] $MaxCountRule ) 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.ApplicationVersionLifecycleConfig' } } |