User guide
foreach (var job in jobs)
{
Console.WriteLine(" For job ID: {0}",
job.Id);
Console.WriteLine("Archive ID: {0}",
job.ArchiveId);
Console.WriteLine("Archive size in bytes: {0}",
job.ArchiveSizeInBytes.ToString());
Console.WriteLine("Completed: {0}",
job.Completed);
Console.WriteLine("Completion date: {0}",
job.CompletionDate);
Console.WriteLine("Creation date: {0}",
job.CreationDate);
Console.WriteLine("Inventory size in bytes: {0}",
job.InventorySizeInBytes);
Console.WriteLine("Job description: {0}",
job.JobDescription);
Console.WriteLine("Status code: {0}",
job.StatusCode.Value);
Console.WriteLine("Status message: {0}",
job.StatusMessage);
}
}
else
{
Console.WriteLine(" No jobs.");
}
}
For related API reference information, see Amazon.Glacier.Resources.
AWS Identity and Access Management
Programming with the AWS SDK for .NET
The AWS SDK for .NET supports AWS Identity and Access Management (IAM), which is a web service
that enables Amazon Web Services (AWS) customers to manage users and user permissions in AWS.
The following information introduces you to the IAM programming models in the SDK for .NET.There are
also links to additional IAM programming resources within the SDK for .NET.
Topics
• Programming Models (p. 92)
• IAM Resource API Examples (p. 94)
• Tutorial: Using an IAM Role (p. 108)
Version v2.0.0
91
AWS SDK for .NET Developer Guide
AWS Identity and Access Management (IAM)