You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-16Lines changed: 3 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ plugins:
87
87
```
88
88
89
89
#### Current Gotcha
90
-
Please keep this gotcha in mind when using this tips. To generate Logical ID for CloudFormation, the plugin transforms the specified name in serverless.yml based on the following scheme.
90
+
Please keep this gotcha in mind if you want to reference the `name` from the `resources` section. To generate Logical ID for CloudFormation, the plugin transforms the specified name in serverless.yml based on the following scheme.
91
91
92
92
- Transform a leading character into uppercase
93
93
- Transform `-` into Dash
@@ -100,26 +100,13 @@ The correct sample is here.
100
100
```yaml
101
101
stepFunctions:
102
102
stateMachines:
103
-
etlStateMachine:
103
+
myStateMachine:
104
104
name: myStateMachine-${self:service}-${opt:stage}
105
-
events:
106
-
- http:
107
-
path: etl-trigger
108
-
method: GET
109
-
definition:
110
-
Comment: "An example of the Amazon States Language using wait states"
0 commit comments