Amazon.Runtime.Internal.Auth.AWS4SigningResult.AWS4SigningResult C# (CSharp) Method

AWS4SigningResult() public method

Constructs a new signing result instance for a computed signature
public AWS4SigningResult ( string awsAccessKeyId, System.DateTime signedAt, string signedHeaders, string scope, byte signingKey, byte signature ) : System
awsAccessKeyId string The access key that was included in the signature
signedAt System.DateTime Date/time (UTC) that the signature was computed
signedHeaders string The collection of headers names that were included in the signature
scope string Formatted 'scope' value for signing (YYYYMMDD/region/service/aws4_request)
signingKey byte Returns the key that was used to compute the signature
signature byte Computed signature
return System
        public AWS4SigningResult(string awsAccessKeyId, 
                                 DateTime signedAt, 
                                 string signedHeaders, 
                                 string scope, 
                                 byte[] signingKey, 
                                 byte[] signature)
        {
            this._awsAccessKeyId = awsAccessKeyId;
            this._originalDateTime = signedAt;
            this._signedHeaders = signedHeaders;
            this._scope = scope;
            this._signingKey = signingKey;
            this._signature = signature;
        }
AWS4SigningResult