├── .gitattributes ├── 9781484254004.jpg ├── Contributing.md ├── LICENSE.txt ├── README.md ├── errata.md ├── java-sources ├── chapter-1 │ ├── demo-01 │ │ ├── InsertRecordDynamoDB.java │ │ ├── QueryRecordDynamoDB.java │ │ └── pom.xml │ └── demo-02 │ │ ├── Order.java │ │ ├── SaveOrderLambdaHandler.java │ │ └── pom.xml ├── chapter-2 │ └── demo-01 │ │ ├── CreateQueue.java │ │ └── pom.xml └── chapter-4 │ ├── ImageProcessingExample.jar │ ├── demo-01 │ ├── RegisterDomain.java │ └── pom.xml │ └── sandbox-01 │ ├── Activity.java │ ├── Decider.java │ ├── Starter.java │ ├── Types.java │ └── pom.xml ├── javascript-sources ├── chapter-1 │ ├── demo-01 │ │ ├── common.js │ │ ├── insert-record-dynamodb.html │ │ ├── insert-record-dynamodb.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── query-dynamodb.js │ ├── demo-02 │ │ ├── package.json │ │ └── save_order_lambda_handler.js │ ├── demo-03 │ │ └── invoke-lambda.html │ └── demo-04 │ │ ├── README.md │ │ ├── awsome-restaurant │ │ ├── .browserslistrc │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ │ ├── img │ │ │ │ ├── arugula-crust-dish-208537.jpg │ │ │ │ ├── beef-cheese-circle-262977.jpg │ │ │ │ ├── burrito-chicken-close-up-461198.jpg │ │ │ │ └── wide-logo.jpg │ │ │ ├── index.html │ │ │ └── logo.ico │ │ └── src │ │ │ ├── App.vue │ │ │ ├── components │ │ │ └── FoodItem.vue │ │ │ ├── constants.js │ │ │ ├── main.js │ │ │ ├── router.js │ │ │ ├── store.js │ │ │ ├── utils │ │ │ └── lambda_caller.js │ │ │ └── views │ │ │ ├── About.vue │ │ │ ├── Home.vue │ │ │ └── MyOrder.vue │ │ └── lambda-function-handlers │ │ ├── cancel_order_lambda_handler.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── save_order_lambda_handler.js ├── chapter-2 │ ├── demo-01 │ │ ├── create-queue.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── process-message-promises.js │ │ ├── process-message.js │ │ ├── receive-messages.js │ │ └── send-message.js │ ├── demo-02 │ │ ├── awsome-restaurant │ │ │ ├── .browserslistrc │ │ │ ├── .eslintrc.js │ │ │ ├── README.md │ │ │ ├── babel.config.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ │ ├── img │ │ │ │ │ ├── arugula-crust-dish-208537.jpg │ │ │ │ │ ├── beef-cheese-circle-262977.jpg │ │ │ │ │ ├── burrito-chicken-close-up-461198.jpg │ │ │ │ │ └── wide-logo.jpg │ │ │ │ ├── index.html │ │ │ │ └── logo.ico │ │ │ └── src │ │ │ │ ├── App.vue │ │ │ │ ├── components │ │ │ │ └── FoodItem.vue │ │ │ │ ├── constants.js │ │ │ │ ├── main.js │ │ │ │ ├── router.js │ │ │ │ ├── store.js │ │ │ │ ├── utils │ │ │ │ └── lambda_caller.js │ │ │ │ └── views │ │ │ │ ├── About.vue │ │ │ │ ├── Home.vue │ │ │ │ └── MyOrder.vue │ │ └── lambda-function-handlers │ │ │ ├── orchestrator-lambda-handler.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── save_order_lambda_handler.js │ ├── demo-03 │ │ ├── package-lock.json │ │ ├── package.json │ │ └── sqs-worker.js │ └── demo-04 │ │ ├── configure-queue-with-dlq.js │ │ ├── create-fifo-queue.js │ │ ├── create-queue-with-dlq.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── receive-messages-fifo.js │ │ └── send-message-fifo.js ├── chapter-3 │ ├── demo-01 │ │ ├── package-lock.json │ │ ├── package.json │ │ └── topic-basics.js │ ├── demo-02 │ │ ├── awsome-restaurant │ │ │ ├── .browserslistrc │ │ │ ├── .eslintrc.js │ │ │ ├── README.md │ │ │ ├── babel.config.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ │ ├── img │ │ │ │ │ ├── arugula-crust-dish-208537.jpg │ │ │ │ │ ├── beef-cheese-circle-262977.jpg │ │ │ │ │ ├── burrito-chicken-close-up-461198.jpg │ │ │ │ │ └── wide-logo.jpg │ │ │ │ ├── index.html │ │ │ │ └── logo.ico │ │ │ └── src │ │ │ │ ├── App.vue │ │ │ │ ├── components │ │ │ │ └── FoodItem.vue │ │ │ │ ├── constants.js │ │ │ │ ├── main.js │ │ │ │ ├── router.js │ │ │ │ ├── store.js │ │ │ │ ├── utils │ │ │ │ ├── lambda_caller.js │ │ │ │ └── sns_caller.js │ │ │ │ └── views │ │ │ │ ├── About.vue │ │ │ │ ├── Home.vue │ │ │ │ └── MyOrder.vue │ │ └── notification-receiver-lambda-handler.js │ └── demo-03 │ │ ├── awsome-restaurant │ │ ├── .browserslistrc │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public │ │ │ ├── firebase-messaging-sw.js │ │ │ ├── img │ │ │ │ ├── arugula-crust-dish-208537.jpg │ │ │ │ ├── beef-cheese-circle-262977.jpg │ │ │ │ ├── burrito-chicken-close-up-461198.jpg │ │ │ │ └── wide-logo.jpg │ │ │ ├── index.html │ │ │ └── logo.ico │ │ └── src │ │ │ ├── App.vue │ │ │ ├── components │ │ │ └── FoodItem.vue │ │ │ ├── constants.js │ │ │ ├── main.js │ │ │ ├── router.js │ │ │ ├── store.js │ │ │ ├── utils │ │ │ ├── lambda_caller.js │ │ │ └── sns_caller.js │ │ │ └── views │ │ │ ├── About.vue │ │ │ ├── Home.vue │ │ │ └── MyOrder.vue │ │ ├── package-lock.json │ │ └── package.json ├── chapter-4 │ ├── demo-01 │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── register-activity-type.js │ │ ├── register-domain.js │ │ └── register-workflow-type.js │ ├── demo-02 │ │ ├── awsome-restaurant │ │ │ ├── .browserslistrc │ │ │ ├── .eslintrc.js │ │ │ ├── README.md │ │ │ ├── babel.config.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── public │ │ │ │ ├── img │ │ │ │ │ ├── arugula-crust-dish-208537.jpg │ │ │ │ │ ├── beef-cheese-circle-262977.jpg │ │ │ │ │ ├── burrito-chicken-close-up-461198.jpg │ │ │ │ │ └── wide-logo.jpg │ │ │ │ ├── index.html │ │ │ │ └── logo.ico │ │ │ └── src │ │ │ │ ├── App.vue │ │ │ │ ├── components │ │ │ │ └── FoodItem.vue │ │ │ │ ├── constants.js │ │ │ │ ├── main.js │ │ │ │ ├── router.js │ │ │ │ ├── store.js │ │ │ │ ├── utils │ │ │ │ └── lambda_caller.js │ │ │ │ └── views │ │ │ │ ├── About.vue │ │ │ │ ├── Home.vue │ │ │ │ └── MyOrder.vue │ │ ├── package.json │ │ ├── start_order_workflow_lambda_handler.js │ │ └── starter.js │ ├── demo-03 │ │ ├── decider-2.js │ │ ├── decider-3.js │ │ ├── decider.js │ │ ├── package-lock.json │ │ └── package.json │ └── demo-04 │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── schedule-lambda.js │ │ └── worker.js ├── chapter-5 │ ├── demo-01 │ │ ├── create_state_machine.js │ │ └── package.json │ └── demo-02 │ │ ├── activity_worker.js │ │ ├── create_activity.js │ │ └── package.json ├── javascript-sources.iml └── package.json └── python-sources ├── chapter-1 ├── demo-01 │ ├── insert_record_dynamodb.py │ └── query_dynamodb.py └── demo-02 │ └── save_order_lambda_handler.py ├── chapter-2 └── demo-01 │ └── create_queue.py ├── chapter-4 ├── demo-01 │ └── register_activity_type.py └── sandbox-01 │ └── decider.py └── python-sources.iml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484254004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/9781484254004.jpg -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/README.md -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/errata.md -------------------------------------------------------------------------------- /java-sources/chapter-1/demo-01/InsertRecordDynamoDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-1/demo-01/InsertRecordDynamoDB.java -------------------------------------------------------------------------------- /java-sources/chapter-1/demo-01/QueryRecordDynamoDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-1/demo-01/QueryRecordDynamoDB.java -------------------------------------------------------------------------------- /java-sources/chapter-1/demo-01/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-1/demo-01/pom.xml -------------------------------------------------------------------------------- /java-sources/chapter-1/demo-02/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-1/demo-02/Order.java -------------------------------------------------------------------------------- /java-sources/chapter-1/demo-02/SaveOrderLambdaHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-1/demo-02/SaveOrderLambdaHandler.java -------------------------------------------------------------------------------- /java-sources/chapter-1/demo-02/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-1/demo-02/pom.xml -------------------------------------------------------------------------------- /java-sources/chapter-2/demo-01/CreateQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-2/demo-01/CreateQueue.java -------------------------------------------------------------------------------- /java-sources/chapter-2/demo-01/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-2/demo-01/pom.xml -------------------------------------------------------------------------------- /java-sources/chapter-4/ImageProcessingExample.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-4/ImageProcessingExample.jar -------------------------------------------------------------------------------- /java-sources/chapter-4/demo-01/RegisterDomain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-4/demo-01/RegisterDomain.java -------------------------------------------------------------------------------- /java-sources/chapter-4/demo-01/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-4/demo-01/pom.xml -------------------------------------------------------------------------------- /java-sources/chapter-4/sandbox-01/Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-4/sandbox-01/Activity.java -------------------------------------------------------------------------------- /java-sources/chapter-4/sandbox-01/Decider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-4/sandbox-01/Decider.java -------------------------------------------------------------------------------- /java-sources/chapter-4/sandbox-01/Starter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-4/sandbox-01/Starter.java -------------------------------------------------------------------------------- /java-sources/chapter-4/sandbox-01/Types.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-4/sandbox-01/Types.java -------------------------------------------------------------------------------- /java-sources/chapter-4/sandbox-01/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/java-sources/chapter-4/sandbox-01/pom.xml -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-01/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-01/common.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-01/insert-record-dynamodb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-01/insert-record-dynamodb.html -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-01/insert-record-dynamodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-01/insert-record-dynamodb.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-01/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-01/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-01/query-dynamodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-01/query-dynamodb.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-02/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-02/save_order_lambda_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-02/save_order_lambda_handler.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-03/invoke-lambda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-03/invoke-lambda.html -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/README.md -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/.eslintrc.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/README.md -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/babel.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/postcss.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/public/img/wide-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/public/img/wide-logo.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/public/index.html -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/public/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/public/logo.ico -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/App.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/components/FoodItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/components/FoodItem.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/constants.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/main.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/router.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/store.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/utils/lambda_caller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/utils/lambda_caller.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/views/About.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/views/Home.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/awsome-restaurant/src/views/MyOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/awsome-restaurant/src/views/MyOrder.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/lambda-function-handlers/cancel_order_lambda_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/lambda-function-handlers/cancel_order_lambda_handler.js -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/lambda-function-handlers/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/lambda-function-handlers/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/lambda-function-handlers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/lambda-function-handlers/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-1/demo-04/lambda-function-handlers/save_order_lambda_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-1/demo-04/lambda-function-handlers/save_order_lambda_handler.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-01/create-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-01/create-queue.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-01/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-01/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-01/process-message-promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-01/process-message-promises.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-01/process-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-01/process-message.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-01/receive-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-01/receive-messages.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-01/send-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-01/send-message.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/.eslintrc.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/README.md -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/babel.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/postcss.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/public/img/wide-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/public/img/wide-logo.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/public/index.html -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/public/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/public/logo.ico -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/App.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/components/FoodItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/components/FoodItem.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/constants.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/main.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/router.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/store.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/utils/lambda_caller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/utils/lambda_caller.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/views/About.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/views/Home.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/awsome-restaurant/src/views/MyOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/awsome-restaurant/src/views/MyOrder.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/lambda-function-handlers/orchestrator-lambda-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/lambda-function-handlers/orchestrator-lambda-handler.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/lambda-function-handlers/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/lambda-function-handlers/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/lambda-function-handlers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/lambda-function-handlers/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-02/lambda-function-handlers/save_order_lambda_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-02/lambda-function-handlers/save_order_lambda_handler.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-03/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-03/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-03/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-03/sqs-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-03/sqs-worker.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-04/configure-queue-with-dlq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-04/configure-queue-with-dlq.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-04/create-fifo-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-04/create-fifo-queue.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-04/create-queue-with-dlq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-04/create-queue-with-dlq.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-04/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-04/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-04/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-04/receive-messages-fifo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-04/receive-messages-fifo.js -------------------------------------------------------------------------------- /javascript-sources/chapter-2/demo-04/send-message-fifo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-2/demo-04/send-message-fifo.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-01/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-01/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-01/topic-basics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-01/topic-basics.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/.eslintrc.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/README.md -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/babel.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/postcss.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/public/img/wide-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/public/img/wide-logo.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/public/index.html -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/public/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/public/logo.ico -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/App.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/components/FoodItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/components/FoodItem.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/constants.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/main.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/router.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/store.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/utils/lambda_caller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/utils/lambda_caller.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/utils/sns_caller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/utils/sns_caller.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/views/About.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/views/Home.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/awsome-restaurant/src/views/MyOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/awsome-restaurant/src/views/MyOrder.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-02/notification-receiver-lambda-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-02/notification-receiver-lambda-handler.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/.eslintrc.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/README.md -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/babel.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/postcss.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/public/firebase-messaging-sw.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/public/img/wide-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/public/img/wide-logo.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/public/index.html -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/public/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/public/logo.ico -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/App.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/components/FoodItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/components/FoodItem.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/constants.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/main.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/router.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/store.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/utils/lambda_caller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/utils/lambda_caller.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/utils/sns_caller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/utils/sns_caller.js -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/views/About.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/views/Home.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/awsome-restaurant/src/views/MyOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/awsome-restaurant/src/views/MyOrder.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-3/demo-03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-3/demo-03/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-01/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-01/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-01/register-activity-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-01/register-activity-type.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-01/register-domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-01/register-domain.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-01/register-workflow-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-01/register-workflow-type.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/.eslintrc.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/README.md -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/babel.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/postcss.config.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/public/img/arugula-crust-dish-208537.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/public/img/beef-cheese-circle-262977.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/public/img/burrito-chicken-close-up-461198.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/public/img/wide-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/public/img/wide-logo.jpg -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/public/index.html -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/public/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/public/logo.ico -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/App.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/components/FoodItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/components/FoodItem.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/constants.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/main.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/router.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/store.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/utils/lambda_caller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/utils/lambda_caller.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/views/About.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/views/Home.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/awsome-restaurant/src/views/MyOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/awsome-restaurant/src/views/MyOrder.vue -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/start_order_workflow_lambda_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/start_order_workflow_lambda_handler.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-02/starter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-02/starter.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-03/decider-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-03/decider-2.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-03/decider-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-03/decider-3.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-03/decider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-03/decider.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-03/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-03/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-03/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-04/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-04/package-lock.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-04/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-04/schedule-lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-04/schedule-lambda.js -------------------------------------------------------------------------------- /javascript-sources/chapter-4/demo-04/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-4/demo-04/worker.js -------------------------------------------------------------------------------- /javascript-sources/chapter-5/demo-01/create_state_machine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-5/demo-01/create_state_machine.js -------------------------------------------------------------------------------- /javascript-sources/chapter-5/demo-01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-5/demo-01/package.json -------------------------------------------------------------------------------- /javascript-sources/chapter-5/demo-02/activity_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-5/demo-02/activity_worker.js -------------------------------------------------------------------------------- /javascript-sources/chapter-5/demo-02/create_activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-5/demo-02/create_activity.js -------------------------------------------------------------------------------- /javascript-sources/chapter-5/demo-02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/chapter-5/demo-02/package.json -------------------------------------------------------------------------------- /javascript-sources/javascript-sources.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/javascript-sources.iml -------------------------------------------------------------------------------- /javascript-sources/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/javascript-sources/package.json -------------------------------------------------------------------------------- /python-sources/chapter-1/demo-01/insert_record_dynamodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/python-sources/chapter-1/demo-01/insert_record_dynamodb.py -------------------------------------------------------------------------------- /python-sources/chapter-1/demo-01/query_dynamodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/python-sources/chapter-1/demo-01/query_dynamodb.py -------------------------------------------------------------------------------- /python-sources/chapter-1/demo-02/save_order_lambda_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/python-sources/chapter-1/demo-02/save_order_lambda_handler.py -------------------------------------------------------------------------------- /python-sources/chapter-2/demo-01/create_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/python-sources/chapter-2/demo-01/create_queue.py -------------------------------------------------------------------------------- /python-sources/chapter-4/demo-01/register_activity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/python-sources/chapter-4/demo-01/register_activity_type.py -------------------------------------------------------------------------------- /python-sources/chapter-4/sandbox-01/decider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/python-sources/chapter-4/sandbox-01/decider.py -------------------------------------------------------------------------------- /python-sources/python-sources.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/definitive-guide-to-aws-application-integration/HEAD/python-sources/python-sources.iml --------------------------------------------------------------------------------