Public/Resource Property Types/Add-VSEC2LaunchTemplateMonitoring.ps1
function Add-VSEC2LaunchTemplateMonitoring { <# .SYNOPSIS Adds an AWS::EC2::LaunchTemplate.Monitoring resource property to the template .DESCRIPTION Adds an AWS::EC2::LaunchTemplate.Monitoring resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html .PARAMETER Enabled Required: False Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata-monitoring.html#cfn-ec2-launchtemplate-launchtemplatedata-monitoring-enabled PrimitiveType: Boolean UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.EC2.LaunchTemplate.Monitoring')] [cmdletbinding()] Param ( [parameter(Mandatory = $false)] [System.Boolean] $Enabled ) Begin { $obj = [PSCustomObject]@{} $commonParams = @('Verbose','Debug','ErrorAction','WarningAction','InformationAction','ErrorVariable','WarningVariable','InformationVariable','OutVariable','OutBuffer','PipelineVariable') } Process { foreach ($key in $PSBoundParameters.Keys | Where-Object {$commonParams -notcontains $_}) { $obj | Add-Member -MemberType NoteProperty -Name $key -Value $PSBoundParameters.$key } } End { $obj | Add-ObjectDetail -TypeName 'Vaporshell.Resource.EC2.LaunchTemplate.Monitoring' } } |