Public/Resource Property Types/Add-VSCognitoUserPoolPasswordPolicy.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
function Add-VSCognitoUserPoolPasswordPolicy { <# .SYNOPSIS Adds an AWS::Cognito::UserPool.PasswordPolicy resource property to the template .DESCRIPTION Adds an AWS::Cognito::UserPool.PasswordPolicy resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html .PARAMETER RequireNumbers Required: False Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers PrimitiveType: Boolean UpdateType: Mutable .PARAMETER MinimumLength Required: False Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength PrimitiveType: Integer UpdateType: Mutable .PARAMETER RequireUppercase Required: False Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase PrimitiveType: Boolean UpdateType: Mutable .PARAMETER RequireLowercase Required: False Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase PrimitiveType: Boolean UpdateType: Mutable .PARAMETER RequireSymbols Required: False Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols PrimitiveType: Boolean UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.Cognito.UserPool.PasswordPolicy')] [cmdletbinding()] Param ( [parameter(Mandatory = $false)] [System.Boolean] $RequireNumbers, [parameter(Mandatory = $false)] [Int] $MinimumLength, [parameter(Mandatory = $false)] [System.Boolean] $RequireUppercase, [parameter(Mandatory = $false)] [System.Boolean] $RequireLowercase, [parameter(Mandatory = $false)] [System.Boolean] $RequireSymbols ) Begin { $obj = [PSCustomObject]@{} } Process { foreach ($key in $PSBoundParameters.Keys) { $val = $((Get-Variable $key).Value) if ($val -eq "True") { $val = "true" } elseif ($val -eq "False") { $val = "false" } $obj | Add-Member -MemberType NoteProperty -Name $key -Value $val } } End { $obj | Add-ObjectDetail -TypeName 'Vaporshell.Resource.Cognito.UserPool.PasswordPolicy' } } |