├── README ├── cloudfront └── image_tag.rb ├── cloudwatch └── breach.php ├── ec2 ├── boto │ ├── ec2 │ ├── ec2_init.py │ └── readme ├── ec2.sh ├── etc │ └── init.d │ │ └── ec2 ├── make-backups └── purge-backups ├── java-examples ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── lib │ ├── aws-java-sdk-1.1.7.1.jar │ ├── commons-codec-1.3.jar │ ├── commons-httpclient-3.0.1.jar │ ├── commons-logging-1.1.1.jar │ ├── jackson-core-asl-1.4.3.jar │ ├── mail-1.4.3.jar │ ├── stax-1.2.0.jar │ └── stax-api-1.0.1.jar └── src │ ├── com │ └── nineapps │ │ └── programmingec2 │ │ └── Constants.java │ └── net │ └── nineapps │ └── programmingec2 │ ├── chapter4 │ ├── SNSExamples.java │ ├── SQSExamples.java │ └── SimpleDBExamples.java │ └── chapter7 │ ├── SNSExamples.java │ ├── SQSExamples.java │ ├── SQSLogger.java │ └── SimpleDBExamples.java ├── monit └── monitrc ├── simpledb ├── example1 │ ├── add_user.rb │ └── get_user.rb ├── example2 │ ├── add.php │ ├── delete.php │ ├── get.php │ ├── increment.php │ └── waited_increment.php └── example3 │ └── readme ├── sns ├── example1 │ ├── confirm.rb │ ├── create_topic.rb │ ├── publish.rb │ └── subscribe.rb ├── example2 │ ├── create_topic.php │ ├── delete_topic.php │ ├── list_topics.php │ ├── publish.php │ ├── receive.php │ └── subscribe.php └── example3 │ └── readme └── sqs ├── example1 ├── receive_message.rb └── send_message.rb ├── example2 ├── attributes.php ├── receive.php └── send.php └── example3 └── readme /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudfront/image_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/cloudfront/image_tag.rb -------------------------------------------------------------------------------- /cloudwatch/breach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/cloudwatch/breach.php -------------------------------------------------------------------------------- /ec2/boto/ec2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/ec2/boto/ec2 -------------------------------------------------------------------------------- /ec2/boto/ec2_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/ec2/boto/ec2_init.py -------------------------------------------------------------------------------- /ec2/boto/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/ec2/boto/readme -------------------------------------------------------------------------------- /ec2/ec2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/ec2/ec2.sh -------------------------------------------------------------------------------- /ec2/etc/init.d/ec2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/ec2/etc/init.d/ec2 -------------------------------------------------------------------------------- /ec2/make-backups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/ec2/make-backups -------------------------------------------------------------------------------- /ec2/purge-backups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/ec2/purge-backups -------------------------------------------------------------------------------- /java-examples/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/.classpath -------------------------------------------------------------------------------- /java-examples/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/.project -------------------------------------------------------------------------------- /java-examples/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /java-examples/lib/aws-java-sdk-1.1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/lib/aws-java-sdk-1.1.7.1.jar -------------------------------------------------------------------------------- /java-examples/lib/commons-codec-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/lib/commons-codec-1.3.jar -------------------------------------------------------------------------------- /java-examples/lib/commons-httpclient-3.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/lib/commons-httpclient-3.0.1.jar -------------------------------------------------------------------------------- /java-examples/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /java-examples/lib/jackson-core-asl-1.4.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/lib/jackson-core-asl-1.4.3.jar -------------------------------------------------------------------------------- /java-examples/lib/mail-1.4.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/lib/mail-1.4.3.jar -------------------------------------------------------------------------------- /java-examples/lib/stax-1.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/lib/stax-1.2.0.jar -------------------------------------------------------------------------------- /java-examples/lib/stax-api-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/lib/stax-api-1.0.1.jar -------------------------------------------------------------------------------- /java-examples/src/com/nineapps/programmingec2/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/src/com/nineapps/programmingec2/Constants.java -------------------------------------------------------------------------------- /java-examples/src/net/nineapps/programmingec2/chapter4/SNSExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/src/net/nineapps/programmingec2/chapter4/SNSExamples.java -------------------------------------------------------------------------------- /java-examples/src/net/nineapps/programmingec2/chapter4/SQSExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/src/net/nineapps/programmingec2/chapter4/SQSExamples.java -------------------------------------------------------------------------------- /java-examples/src/net/nineapps/programmingec2/chapter4/SimpleDBExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/src/net/nineapps/programmingec2/chapter4/SimpleDBExamples.java -------------------------------------------------------------------------------- /java-examples/src/net/nineapps/programmingec2/chapter7/SNSExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/src/net/nineapps/programmingec2/chapter7/SNSExamples.java -------------------------------------------------------------------------------- /java-examples/src/net/nineapps/programmingec2/chapter7/SQSExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/src/net/nineapps/programmingec2/chapter7/SQSExamples.java -------------------------------------------------------------------------------- /java-examples/src/net/nineapps/programmingec2/chapter7/SQSLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/src/net/nineapps/programmingec2/chapter7/SQSLogger.java -------------------------------------------------------------------------------- /java-examples/src/net/nineapps/programmingec2/chapter7/SimpleDBExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/java-examples/src/net/nineapps/programmingec2/chapter7/SimpleDBExamples.java -------------------------------------------------------------------------------- /monit/monitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/monit/monitrc -------------------------------------------------------------------------------- /simpledb/example1/add_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/simpledb/example1/add_user.rb -------------------------------------------------------------------------------- /simpledb/example1/get_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/simpledb/example1/get_user.rb -------------------------------------------------------------------------------- /simpledb/example2/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/simpledb/example2/add.php -------------------------------------------------------------------------------- /simpledb/example2/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/simpledb/example2/delete.php -------------------------------------------------------------------------------- /simpledb/example2/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/simpledb/example2/get.php -------------------------------------------------------------------------------- /simpledb/example2/increment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/simpledb/example2/increment.php -------------------------------------------------------------------------------- /simpledb/example2/waited_increment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/simpledb/example2/waited_increment.php -------------------------------------------------------------------------------- /simpledb/example3/readme: -------------------------------------------------------------------------------- 1 | See java-examples directory. 2 | -------------------------------------------------------------------------------- /sns/example1/confirm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example1/confirm.rb -------------------------------------------------------------------------------- /sns/example1/create_topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example1/create_topic.rb -------------------------------------------------------------------------------- /sns/example1/publish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example1/publish.rb -------------------------------------------------------------------------------- /sns/example1/subscribe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example1/subscribe.rb -------------------------------------------------------------------------------- /sns/example2/create_topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example2/create_topic.php -------------------------------------------------------------------------------- /sns/example2/delete_topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example2/delete_topic.php -------------------------------------------------------------------------------- /sns/example2/list_topics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example2/list_topics.php -------------------------------------------------------------------------------- /sns/example2/publish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example2/publish.php -------------------------------------------------------------------------------- /sns/example2/receive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example2/receive.php -------------------------------------------------------------------------------- /sns/example2/subscribe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sns/example2/subscribe.php -------------------------------------------------------------------------------- /sns/example3/readme: -------------------------------------------------------------------------------- 1 | See java-examples directory. 2 | -------------------------------------------------------------------------------- /sqs/example1/receive_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sqs/example1/receive_message.rb -------------------------------------------------------------------------------- /sqs/example1/send_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sqs/example1/send_message.rb -------------------------------------------------------------------------------- /sqs/example2/attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sqs/example2/attributes.php -------------------------------------------------------------------------------- /sqs/example2/receive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sqs/example2/receive.php -------------------------------------------------------------------------------- /sqs/example2/send.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aknostic/programming-amazon-ec2/HEAD/sqs/example2/send.php -------------------------------------------------------------------------------- /sqs/example3/readme: -------------------------------------------------------------------------------- 1 | See java-examples directory. 2 | --------------------------------------------------------------------------------