Created
February 14, 2009 02:41
-
-
Save bobmcwhirter/64225 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Ec2WebService < BaseWebService | |
target_namespace 'http://ec2.amazonaws.com/doc/2008-12-01/' | |
port_name 'AmazonEC2' | |
security do | |
inbound do | |
verify_signature | |
verify_timestamp | |
end | |
end | |
def describe_instances() | |
puts "describe_instances #{request}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment