We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f76bb5 commit 9bda3fdCopy full SHA for 9bda3fd
lib/index.js
@@ -140,6 +140,20 @@ class ServerlessStepFunctions {
140
.then(this.getEndpointInfo)
141
.then(this.display),
142
};
143
+
144
+ const stepFunctionsSchema = {
145
+ type: 'object',
146
+ properties: {
147
+ stateMachines: { type: 'object' },
148
+ validate: { type: 'boolean' },
149
+ noOutput: { type: 'boolean' },
150
+ },
151
+ required: ['stateMachines'],
152
+ };
153
+ this.serverless.configSchemaHandler.defineTopLevelProperty(
154
+ 'stepFunctions',
155
+ stepFunctionsSchema,
156
+ );
157
}
158
159
invoke() {
0 commit comments