Class SignedUrlResponse
SignedUrlResponse
Inherited Members
Namespace: Unity.Services.Apis.CloudSave
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "SignedUrlResponse")]
[Preserve]
public class SignedUrlResponse
Constructors
SignedUrlResponse(string, string, object)
Initializes a new instance of the Signed
Declaration
[Preserve]
public SignedUrlResponse(string signedUrl = null, string httpMethod = null, object requiredHeaders = null)
Parameters
Type | Name | Description |
---|---|---|
string | signedUrl | The signed URL used to access the resource. (required). |
string | httpMethod | The HTTP method that must be used on the signedUrl. (required). |
object | requiredHeaders | The set of HTTP headers that must be sent with the request for it to succeed. (required). |
Properties
HttpMethod
The HTTP method that must be used on the signedUrl.
Declaration
[DataMember(Name = "httpMethod", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string HttpMethod { get; set; }
Property Value
Type | Description |
---|---|
string | The HTTP method that must be used on the signedUrl. |
RequiredHeaders
The set of HTTP headers that must be sent with the request for it to succeed.
Declaration
[DataMember(Name = "requiredHeaders", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public object RequiredHeaders { get; set; }
Property Value
Type | Description |
---|---|
object | The set of HTTP headers that must be sent with the request for it to succeed. |
SignedUrl
The signed URL used to access the resource.
Declaration
[DataMember(Name = "signedUrl", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string SignedUrl { get; set; }
Property Value
Type | Description |
---|---|
string | The signed URL used to access the resource. |