Public/Resource Property Types/Add-VSCodeDeployDeploymentGroupAutoRollbackConfiguration.ps1
function Add-VSCodeDeployDeploymentGroupAutoRollbackConfiguration { <# .SYNOPSIS Adds an AWS::CodeDeploy::DeploymentGroup.AutoRollbackConfiguration resource property to the template .DESCRIPTION Adds an AWS::CodeDeploy::DeploymentGroup.AutoRollbackConfiguration resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html .PARAMETER Enabled Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled PrimitiveType: Boolean Required: False UpdateType: Mutable .PARAMETER Events Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-events DuplicatesAllowed: False PrimitiveItemType: String Required: False Type: List UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.CodeDeploy.DeploymentGroup.AutoRollbackConfiguration')] [cmdletbinding()] Param ( [parameter(Mandatory = $false)] [System.Boolean] $Enabled, [parameter(Mandatory = $false)] $Events ) 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.CodeDeploy.DeploymentGroup.AutoRollbackConfiguration' } } |