Public/Resource Property Types/Add-VSS3BucketSourceSelectionCriteria.ps1
function Add-VSS3BucketSourceSelectionCriteria { <# .SYNOPSIS Adds an AWS::S3::Bucket.SourceSelectionCriteria resource property to the template .DESCRIPTION Adds an AWS::S3::Bucket.SourceSelectionCriteria resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-sourceselectioncriteria.html .PARAMETER SseKmsEncryptedObjects Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-sourceselectioncriteria.html#cfn-s3-bucket-sourceselectioncriteria-ssekmsencryptedobjects Required: True Type: SseKmsEncryptedObjects UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.S3.Bucket.SourceSelectionCriteria')] [cmdletbinding()] Param ( [parameter(Mandatory = $true)] $SseKmsEncryptedObjects ) 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.S3.Bucket.SourceSelectionCriteria' } } |