Public/Resource Property Types/Add-VSCloudFrontDistributionRestrictions.ps1
function Add-VSCloudFrontDistributionRestrictions { <# .SYNOPSIS Adds an AWS::CloudFront::Distribution.Restrictions resource property to the template .DESCRIPTION Adds an AWS::CloudFront::Distribution.Restrictions resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-restrictions.html .PARAMETER GeoRestriction Type: GeoRestriction Required: True Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-restrictions.html#cfn-cloudfront-distribution-restrictions-georestriction UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.CloudFront.Distribution.Restrictions')] [cmdletbinding()] Param ( [parameter(Mandatory = $true)] $GeoRestriction ) 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.CloudFront.Distribution.Restrictions' } } |