[][src]Struct rusoto_glacier::GlacierJobDescription

pub struct GlacierJobDescription {
    pub action: Option<String>,
    pub archive_id: Option<String>,
    pub archive_sha256_tree_hash: Option<String>,
    pub archive_size_in_bytes: Option<i64>,
    pub completed: Option<bool>,
    pub completion_date: Option<String>,
    pub creation_date: Option<String>,
    pub inventory_retrieval_parameters: Option<InventoryRetrievalJobDescription>,
    pub inventory_size_in_bytes: Option<i64>,
    pub job_description: Option<String>,
    pub job_id: Option<String>,
    pub job_output_path: Option<String>,
    pub output_location: Option<OutputLocation>,
    pub retrieval_byte_range: Option<String>,
    pub sha256_tree_hash: Option<String>,
    pub sns_topic: Option<String>,
    pub select_parameters: Option<SelectParameters>,
    pub status_code: Option<String>,
    pub status_message: Option<String>,
    pub tier: Option<String>,
    pub vault_arn: Option<String>,
}

Contains the description of an Amazon S3 Glacier job.

Fields

action: Option<String>

The job type. This value is either ArchiveRetrieval, InventoryRetrieval, or Select.

archive_id: Option<String>

The archive ID requested for a select job or archive retrieval. Otherwise, this field is null.

archive_sha256_tree_hash: Option<String>

The SHA256 tree hash of the entire archive for an archive retrieval. For inventory retrieval or select jobs, this field is null.

archive_size_in_bytes: Option<i64>

For an archive retrieval job, this value is the size in bytes of the archive being requested for download. For an inventory retrieval or select job, this value is null.

completed: Option<bool>

The job status. When a job is completed, you get the job's output using Get Job Output (GET output).

completion_date: Option<String>

The UTC time that the job request completed. While the job is in progress, the value is null.

creation_date: Option<String>

The UTC date when the job was created. This value is a string representation of ISO 8601 date format, for example "2012-03-20T17:03:43.221Z".

inventory_retrieval_parameters: Option<InventoryRetrievalJobDescription>

Parameters used for range inventory retrieval.

inventory_size_in_bytes: Option<i64>

For an inventory retrieval job, this value is the size in bytes of the inventory requested for download. For an archive retrieval or select job, this value is null.

job_description: Option<String>

The job description provided when initiating the job.

job_id: Option<String>

An opaque string that identifies an Amazon S3 Glacier job.

job_output_path: Option<String>

Contains the job output location.

output_location: Option<OutputLocation>

Contains the location where the data from the select job is stored.

retrieval_byte_range: Option<String>

The retrieved byte range for archive retrieval jobs in the form StartByteValue-EndByteValue. If no range was specified in the archive retrieval, then the whole archive is retrieved. In this case, StartByteValue equals 0 and EndByteValue equals the size of the archive minus 1. For inventory retrieval or select jobs, this field is null.

sha256_tree_hash: Option<String>

For an archive retrieval job, this value is the checksum of the archive. Otherwise, this value is null.

The SHA256 tree hash value for the requested range of an archive. If the InitiateJob request for an archive specified a tree-hash aligned range, then this field returns a value.

If the whole archive is retrieved, this value is the same as the ArchiveSHA256TreeHash value.

This field is null for the following:

  • Archive retrieval jobs that specify a range that is not tree-hash aligned

  • Archival jobs that specify a range that is equal to the whole archive, when the job status is InProgress

  • Inventory jobs

  • Select jobs

sns_topic: Option<String>

An Amazon SNS topic that receives notification.

select_parameters: Option<SelectParameters>

Contains the parameters used for a select.

status_code: Option<String>

The status code can be InProgress, Succeeded, or Failed, and indicates the status of the job.

status_message: Option<String>

A friendly message that describes the job status.

tier: Option<String>

The tier to use for a select or an archive retrieval. Valid values are Expedited, Standard, or Bulk. Standard is the default.

vault_arn: Option<String>

The Amazon Resource Name (ARN) of the vault from which an archive retrieval was requested.

Trait Implementations

impl Clone for GlacierJobDescription[src]

impl Debug for GlacierJobDescription[src]

impl Default for GlacierJobDescription[src]

impl<'de> Deserialize<'de> for GlacierJobDescription[src]

impl PartialEq<GlacierJobDescription> for GlacierJobDescription[src]

impl StructuralPartialEq for GlacierJobDescription[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.