File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ module.exports = {
1212 let DependsOn ;
1313 let Name ;
1414
15- if ( stateMachineObj . Name ) {
15+ if ( stateMachineObj . Name ) {
1616 Name = stateMachineObj . Name ;
1717 }
1818
@@ -53,7 +53,8 @@ module.exports = {
5353 }
5454
5555 const stateMachineLogicalId = this . getStateMachineLogicalId ( stateMachineName , Name ) ;
56- const stateMachineOutputLogicalId = this . getStateMachineOutputLogicalId ( stateMachineName , Name ) ;
56+ const stateMachineOutputLogicalId = this
57+ . getStateMachineOutputLogicalId ( stateMachineName , Name ) ;
5758
5859 const stateMachineTemplate = `
5960 {
Original file line number Diff line number Diff line change 22
33module . exports = {
44 getStateMachineLogicalId ( stateMachineName , Name ) {
5- if ( Name ) {
6- return `${ this . provider . naming . getNormalizedFunctionName ( Name ) } `
5+ if ( Name ) {
6+ return `${ this . provider . naming . getNormalizedFunctionName ( Name ) } ` ;
77 }
88 return `${ this . provider . naming
99 . getNormalizedFunctionName ( stateMachineName ) } StepFunctionsStateMachine`;
1010 } ,
1111
1212 getStateMachineOutputLogicalId ( stateMachineName , Name ) {
13- if ( Name ) {
14- return `${ this . provider . naming . getNormalizedFunctionName ( Name ) } `
13+ if ( Name ) {
14+ return `${ this . provider . naming . getNormalizedFunctionName ( Name ) } ` ;
1515 }
1616 return `${ this . provider . naming
1717 . getNormalizedFunctionName ( stateMachineName ) } StepFunctionsStateMachineArn`;
You can’t perform that action at this time.
0 commit comments