Struct rusoto_storagegateway::TapeRecoveryPointInfo[][src]

pub struct TapeRecoveryPointInfo {
    pub tape_arn: Option<String>,
    pub tape_recovery_point_time: Option<f64>,
    pub tape_size_in_bytes: Option<i64>,
    pub tape_status: Option<String>,
}

Describes a recovery point.

Fields

The Amazon Resource Name (ARN) of the virtual tape.

The time when the point-in-time view of the virtual tape was replicated for later recovery.

The string format of the tape recovery point time is in the ISO8601 extended YYYY-MM-DD'T'HH:MM:SS'Z' format.

The size, in bytes, of the virtual tapes to recover.

Trait Implementations

impl Default for TapeRecoveryPointInfo
[src]

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

impl Debug for TapeRecoveryPointInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for TapeRecoveryPointInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TapeRecoveryPointInfo
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations