Struct aws_sdk_rust::aws::s3::object::ObjectVersion [] [src]

pub struct ObjectVersion {
    pub last_modified: LastModified,
    pub version_id: ObjectVersionId,
    pub e_tag: ETag,
    pub storage_class: ObjectVersionStorageClass,
    pub key: ObjectKey,
    pub owner: Owner,
    pub is_latest: IsLatest,
    pub size: Size,
}

Fields

Date and time the object was last modified.

Version ID of an object.

The class of storage used to store the object.

The object key.

Specifies whether the object is (true) or is not (false) the latest version of an object.

Size in bytes of the object.

Trait Implementations

impl Debug for ObjectVersion
[src]

Formats the value using the given formatter.

impl Default for ObjectVersion
[src]

Returns the "default value" for a type. Read more

impl Decodable for ObjectVersion
[src]

Deserialize a value using a Decoder.

impl Encodable for ObjectVersion
[src]

Serialize a value using an Encoder.