Query requests are HTTP or HTTPS requests that use the HTTP verb GET or POST and a Query parameter named Action or Operation. Action is used throughout this documentation, although Operation is supported for backward compatibility with other AWS Query APIs.
Each query request must include some common parameters to handle authentication and selection of an action. For more information, see Common Request Parameters.
![]() | Note |
|---|---|
Some API operations take lists of parameters. These lists are specified using the following notation: param.member.n. Values of n are integers starting from 1. All lists of parameters must follow this notation, including lists that only contain one parameter. For example, a query parameter list looks like this:
&attribute.member.1=this
&attribute.member.2=that
|
In every response from AWS, you will see the element ResponseMetadata, which
contains a string element called RequestId. This is simply a unique identifier AWS
assigns to this request for tracking and troubleshooting purposes.
You can send Query requests over either HTTP or HTTPS. Regardless of which protocol you use, you must include a signature in every Query request. This section describes how to create the signature. The method described in the following procedure is known as signature version 2.
To create the signature
Create the canonicalized query string that you need later in this procedure:
Sort the UTF-8 query string components by parameter name with natural byte ordering.
The parameters can come from the GET URI or from the POST body (when
Content-Type is
application/x-www-form-urlencoded).
URL encode the parameter name and values according to the following rules:
Do not URL encode any of the unreserved characters that RFC 3986 defines.
These unreserved characters are A-Z, a-z, 0-9, hyphen ( - ), underscore ( _ ), period ( . ), and tilde ( ~ ).
Percent encode all other characters with %XY, where X and Y are hex characters 0-9 and uppercase A-F.
Percent encode extended UTF-8 characters in the form %XY%ZA....
Percent encode the space character as %20 (and not +, as common encoding schemes do).
![]() | Note |
|---|---|
Currently all AWS service parameter names use unreserved characters, so you don't need to encode them. However, you might want to include code to handle parameter names that use reserved characters, for possible future use. |
Separate the encoded parameter names from their encoded values with the equals sign ( = ) (ASCII character 61), even if the parameter value is empty.
Separate the name-value pairs with an ampersand ( & ) (ASCII code 38).
Create the string to sign according to the following pseudo-grammar (the
"\n" represents an ASCII newline).
StringToSign = HTTPVerb + "\n" +
ValueOfHostHeaderInLowercase + "\n" +
HTTPRequestURI + "\n" +
CanonicalizedQueryString <from the preceding step>The HTTPRequestURI component is the HTTP absolute path component of the URI up to, but not including, the query string. If the HTTPRequestURI is empty, use a forward slash ( / ).
Calculate an RFC 2104-compliant HMAC with the string you just created, your Secret Access Key as the key, and SHA256 or SHA1 as the hash algorithm.
For more information, go to http://www.ietf.org/rfc/rfc2104.txt.
Convert the resulting value to base64.
Use the resulting value as the value of the Signature request
parameter.
![]() | Important |
|---|---|
The final signature you send in the request must be URL encoded as specified in RFC 3986 (for more information, go to http://www.ietf.org/rfc/rfc3986.txt). If your toolkit URL encodes your final request, then it handles the required URL encoding of the signature. If your toolkit doesn't URL encode the final request, then make sure to URL encode the signature before you include it in the request. Most importantly, make sure the signature is URL encoded only once. A common mistake is to URL encode it manually during signature formation, and then again when the toolkit URL encodes the entire request. |
Example Describe AutoScalingGroup API Request
This example uses Auto Scaling CreateAutoScalingGroup
http://autoscaling.amazonaws.com/?AutoScalingGroupName=webtier &LaunchConfigurationName=wt20080929 &MinSize=0 &MaxSize=2 &Cooldown=0 &AvailabilityZones.member.1=us-east-1c &Action=CreateAutoScalingGroup &Version=2009-05-15 &SignatureVersion=2 &SignatureMethod=HmacSHA256 &AWSAccessKeyId=<Your AWS Access Key ID>
Following is the string to sign.
http://autoscaling.amazonaws.com/?AutoScalingGroupName=webtier &LaunchConfigurationName=wt20080929 &MinSize=0 &MaxSize=2 &Cooldown=0 &AvailabilityZones.member.1=us-east-1c &Action=CreateAutoScalingGroup &SignatureMethod=HmacSHA256 &SignatureVersion=2 &Version=2009-05-15
Following is the signed request.
http://autoscaling.amazonaws.com/?AutoScalingGroupName=webtier &LaunchConfigurationName=wt20080929 &MinSize=0 &MaxSize=2 &Cooldown=0 &AvailabilityZones.member.1=us-east-1c &Action=CreateAutoScalingGroup &Version=2009-05-15 &Expires=2008-02-10T12%3A00%3A00Z &Signature=<URLEncode(Base64Encode(Signature))> &SignatureVersion=2 &SignatureMethod=HmacSHA256 &AWSAccessKeyId=<Your AWS Access Key ID>