Public/Resource Property Types/Add-VSDynamoDBTableSSESpecification.ps1
function Add-VSDynamoDBTableSSESpecification { <# .SYNOPSIS Adds an AWS::DynamoDB::Table.SSESpecification resource property to the template .DESCRIPTION Adds an AWS::DynamoDB::Table.SSESpecification resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html .PARAMETER SSEEnabled Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-ssespecification.html#cfn-dynamodb-table-ssespecification-sseenabled PrimitiveType: Boolean Required: True UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.DynamoDB.Table.SSESpecification')] [cmdletbinding()] Param ( [parameter(Mandatory = $true)] [System.Boolean] $SSEEnabled ) 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.DynamoDB.Table.SSESpecification' } } |