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
|`--api-gateway-emulator-port`| Port for API Gateway | API Gateway Mode |
134
134
|`--api-gateway-emulator-mode`| API Gateway mode (Rest/HttpV1/HttpV2) | API Gateway Mode |
135
135
|`--no-launch-window`| Disable auto-launching web interface | Optional |
136
+
|`--config-storage-path`| Path for saving settings and requests | Optional |
136
137
137
138
138
139
## API Gateway Configuration
@@ -333,3 +334,11 @@ Expected response:
333
334
```
334
335
8
335
336
```
337
+
338
+
## Saving Lambda Requests
339
+
340
+
The Test Tool provides users with the ability to save Lambda requests for quick access. Saved requests will be listed in a drop down above the request input area.
341
+
342
+
In order to enable saving requests, you will need to provide a storage path during the test tool startup.
343
+
344
+
You can use the command line argument `--config-storage-path <absolute-path>` to specify the storage path.
[Description("The configuration for the SQS event source. The format of the config is a comma delimited key pairs. For example \"QueueUrl=<queue-url>,FunctionName=<function-name>,VisibilityTimeout=100\". Possible keys are: BatchSize, DisableMessageDelete, FunctionName, LambdaRuntimeApi, Profile, QueueUrl, Region, VisibilityTimeout")]
63
64
publicstring?SQSEventSourceConfig{get;set;}
65
+
66
+
/// <summary>
67
+
/// The absolute path used to save global settings and saved requests. You will need to specify a path in order to enable saving global settings and requests.
[Description("The absolute path used to save global settings and saved requests. You will need to specify a path in order to enable saving global settings and requests.")]
71
+
publicstring?ConfigStoragePath{get;set;}
72
+
73
+
/// <summary>
74
+
/// Validate that <see cref="ConfigStoragePath"/> is an absolute path.
0 commit comments