Send a single event to CloudWatch Events from the command line
Send a single event to CloudWatch Events on the command line.
This tool is much easier to use on the command line than the AWS CLI, plus it is contained within a single statically-linked binary so there’s no dependencies to manage. Simply download and run.
events:PutEvents
)Send a single event:
cwe --source "com.example.app" --resources i-103932,i-10393 --type "A test event" --detail "\"Key\": \"Value\""
or use the short-form flags:
cwe -s "com.example.app" -r i-103932,i-10393 -t "A test event" -d "\"Key\": \"Value\""