Public/Resource Property Types/Add-VSBatchJobDefinitionRetryStrategy.ps1
function Add-VSBatchJobDefinitionRetryStrategy { <# .SYNOPSIS Adds an AWS::Batch::JobDefinition.RetryStrategy resource property to the template .DESCRIPTION Adds an AWS::Batch::JobDefinition.RetryStrategy resource property to the template .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html .PARAMETER Attempts Required: False Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts PrimitiveType: Integer UpdateType: Mutable .FUNCTIONALITY Vaporshell #> [OutputType('Vaporshell.Resource.Batch.JobDefinition.RetryStrategy')] [cmdletbinding()] Param ( [parameter(Mandatory = $false)] [Int] $Attempts ) 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.Batch.JobDefinition.RetryStrategy' } } |