How could I deploy the code from my S3
bucket to someone else's code deploy application?
For example, I push the code to my S3
bucket using:
aws deploy push --application-name CodeDeployApplication --s3-location
s3://cd-deploy-test-bucket/testdeploy.zip --source ./testdeploy
Now, I want my customer to deploy the application himself, once it has been pushed to my S3
bucket? Is that even possible.
How are updates/upgrades delivered to the customer using code deploy?