AWS SDK Version 3 for .NET
API Reference

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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.Glacier.Model.InitiateJobResponse

Namespace: Amazon.Glacier.Model
Assembly: AWSSDK.Glacier.dll
Version: 3.x.y.z

Syntax

C#
public class InitiateJobResponse : AmazonWebServiceResponse

The InitiateJobResponse type exposes the following members

Constructors

NameDescription
Public Method InitiateJobResponse()

Properties

NameTypeDescription
Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property JobId System.String

Gets and sets the property JobId.

The ID of the job.

Public Property JobOutputPath System.String

Gets and sets the property JobOutputPath.

The path to the location of where the select results are stored.

Public Property Location System.String

Gets and sets the property Location.

The relative URI path of the job.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

The example initiates an inventory-retrieval job for the vault named examplevault.

To initiate an inventory-retrieval job


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;

            

Version Information

.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