When testing my custom resource with _sam local_, the resource helper tries to send a response to CloudFormation. It generates an error since I am using fake information in my request payload. Example: ``` { "RequestType": "Create", "ResponseURL": "http://pre-signed-S3-url-for-response", "StackId": "arn:aws:cloudformation:us-east-1:123456789012:stack/MyStack/guid", "RequestId": "unique id for this create request", "ResourceType": "Custom::TestResource", "LogicalResourceId": "MyTestResource", ... ``` It would be nice to disable response sending to cfn when testing with _sam local_. crhelper version: 2.0.10