Skip to content

Commit

Permalink
v1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcberquist committed Feb 1, 2021
1 parent 00f0f91 commit 2c85db1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions box.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
"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,
"projectURL":"",
"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"
}
8 changes: 4 additions & 4 deletions services/ssm.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}
Expand All @@ -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 );
}
Expand Down

0 comments on commit 2c85db1

Please sign in to comment.