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 = {
12
12
let DependsOn ;
13
13
let Name ;
14
14
15
- if ( stateMachineObj . Name ) {
15
+ if ( stateMachineObj . Name ) {
16
16
Name = stateMachineObj . Name ;
17
17
}
18
18
@@ -53,7 +53,8 @@ module.exports = {
53
53
}
54
54
55
55
const stateMachineLogicalId = this . getStateMachineLogicalId ( stateMachineName , Name ) ;
56
- const stateMachineOutputLogicalId = this . getStateMachineOutputLogicalId ( stateMachineName , Name ) ;
56
+ const stateMachineOutputLogicalId = this
57
+ . getStateMachineOutputLogicalId ( stateMachineName , Name ) ;
57
58
58
59
const stateMachineTemplate = `
59
60
{
Original file line number Diff line number Diff line change 2
2
3
3
module . exports = {
4
4
getStateMachineLogicalId ( stateMachineName , Name ) {
5
- if ( Name ) {
6
- return `${ this . provider . naming . getNormalizedFunctionName ( Name ) } `
5
+ if ( Name ) {
6
+ return `${ this . provider . naming . getNormalizedFunctionName ( Name ) } ` ;
7
7
}
8
8
return `${ this . provider . naming
9
9
. getNormalizedFunctionName ( stateMachineName ) } StepFunctionsStateMachine`;
10
10
} ,
11
11
12
12
getStateMachineOutputLogicalId ( stateMachineName , Name ) {
13
- if ( Name ) {
14
- return `${ this . provider . naming . getNormalizedFunctionName ( Name ) } `
13
+ if ( Name ) {
14
+ return `${ this . provider . naming . getNormalizedFunctionName ( Name ) } ` ;
15
15
}
16
16
return `${ this . provider . naming
17
17
. getNormalizedFunctionName ( stateMachineName ) } StepFunctionsStateMachineArn`;
You can’t perform that action at this time.
0 commit comments