AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Contains the Amazon S3 Glacier response to your request.
Namespace: Amazon.Glacier.Model
Assembly: AWSSDK.Glacier.dll
Version: 3.x.y.z
public class InitiateJobResponse : AmazonWebServiceResponse
The InitiateJobResponse type exposes the following members
| Name | Description | |
|---|---|---|
|
InitiateJobResponse() |
| Name | Type | Description | |
|---|---|---|---|
|
ContentLength | System.Int64 | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
HttpStatusCode | System.Net.HttpStatusCode | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
JobId | System.String |
Gets and sets the property JobId. The ID of the job. |
|
JobOutputPath | System.String |
Gets and sets the property JobOutputPath. The path to the location of where the select results are stored. |
|
Location | System.String |
Gets and sets the property Location. The relative URI path of the job. |
|
ResponseMetadata | Amazon.Runtime.ResponseMetadata | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
The example initiates an inventory-retrieval job for the vault named examplevault.
var client = new AmazonGlacierClient();
var response = client.InitiateJob(new InitiateJobRequest
{
AccountId = "-",
JobParameters = new JobParameters {
Description = "My inventory job",
Format = "CSV",
SNSTopic = "arn:aws:sns:us-west-2:111111111111:Glacier-InventoryRetrieval-topic-Example",
Type = "inventory-retrieval"
},
VaultName = "examplevault"
});
string jobId = response.JobId;
string location = response.Location;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5