From 2c85db1bd0937b961f89c2f7c5390a36ab03fc07 Mon Sep 17 00:00:00 2001 From: John Berquist Date: Mon, 1 Feb 2021 10:00:20 -0800 Subject: [PATCH] v1.16.0 --- box.json | 4 ++-- services/ssm.cfc | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/box.json b/box.json index 3001ad9..12d2b10 100644 --- a/box.json +++ b/box.json @@ -31,7 +31,7 @@ "URL":"http://opensource.org/licenses/MIT" } ], - "location":"jcberquist/aws-cfml#v1.15.0", + "location":"jcberquist/aws-cfml#v1.16.0", "name":"aws-cfml", "packageDirectory":"awscfml", "private":false, @@ -39,5 +39,5 @@ "shortDescription":"AWS CFML is a CFML library for interacting with AWS APIs", "slug":"aws-cfml", "type":"modules", - "version":"1.15.0" + "version":"1.16.0" } diff --git a/services/ssm.cfc b/services/ssm.cfc index 03234eb..1552854 100644 --- a/services/ssm.cfc +++ b/services/ssm.cfc @@ -23,8 +23,8 @@ component { ) { var requestSettings = api.resolveRequestSettings( argumentCollection = arguments ); var payload = { 'Name': arguments.Name }; - if( !isNull( arguments.WithDecryption ) ){ - payload[ "WithDecryption" ] = arguments.WithDecryption; + if ( !isNull( arguments.WithDecryption ) ) { + payload[ 'WithDecryption' ] = arguments.WithDecryption; } return apiCall( requestSettings, 'GetParameter', payload ); } @@ -41,8 +41,8 @@ component { ) { var requestSettings = api.resolveRequestSettings( argumentCollection = arguments ); var payload = { 'Names': arguments.Names }; - if( !isNull( arguments.WithDecryption ) ){ - payload[ "WithDecryption" ] = arguments.WithDecryption; + if ( !isNull( arguments.WithDecryption ) ) { + payload[ 'WithDecryption' ] = arguments.WithDecryption; } return apiCall( requestSettings, 'GetParameters', payload ); }