Data.Cloud.AmazonAPI.TAmazonStorageService.BuildStringToSign
Delphi
function BuildStringToSign(const HTTPVerb: string; Headers, QueryParameters: TStringList;  const QueryPrefix, URL: string): string; override;
C++
virtual System::UnicodeString __fastcall BuildStringToSign(const System::UnicodeString HTTPVerb, System::Classes::TStringList* Headers, System::Classes::TStringList* QueryParameters, const System::UnicodeString QueryPrefix, const System::UnicodeString URL);
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| function | protected | Data.Cloud.AmazonAPI.pas Data.Cloud.AmazonAPI.hpp  | 
        Data.Cloud.AmazonAPI | TAmazonStorageService | 
Description
Builds and encodes a string value based on the given information.
Data.Cloud.AmazonAPI.TAmazonStorageService.BuildStringToSign inherits from Data.Cloud.CloudAPI.TCloudService.BuildStringToSign. All content below this line refers to Data.Cloud.CloudAPI.TCloudService.BuildStringToSign.
Builds and encodes a string value based on the given information.
BuildStringToSign returns an encoded string that is used for authentication.
The following table shows the significance of the parameters:
| Parameter | Description | 
|---|---|
| 
 
  | 
 The HTTP verb (for example, GET, POST) of the request type.  | 
| 
 
  | 
 The list of headers in the request, or nil.  | 
| 
 
  | 
 The list of query parameters for the request, or nil.  | 
| 
 
  | 
 The string to prefix the query parameter string with.  | 
| 
 
  | 
 The URL of the request.  |