[][src]Struct rusoto_ebs::CompleteSnapshotRequest

pub struct CompleteSnapshotRequest {
    pub changed_blocks_count: i64,
    pub checksum: Option<String>,
    pub checksum_aggregation_method: Option<String>,
    pub checksum_algorithm: Option<String>,
    pub snapshot_id: String,
}

Fields

changed_blocks_count: i64

The number of blocks that were written to the snapshot.

checksum: Option<String>

An aggregated Base-64 SHA256 checksum based on the checksums of each written block.

To generate the aggregated checksum using the linear aggregation method, arrange the checksums for each written block in ascending order of their block index, concatenate them to form a single string, and then generate the checksum on the entire string using the SHA256 algorithm.

checksum_aggregation_method: Option<String>

The aggregation method used to generate the checksum. Currently, the only supported aggregation method is LINEAR.

checksum_algorithm: Option<String>

The algorithm used to generate the checksum. Currently, the only supported algorithm is SHA256.

snapshot_id: String

The ID of the snapshot.

Trait Implementations

impl Clone for CompleteSnapshotRequest[src]

impl Debug for CompleteSnapshotRequest[src]

impl Default for CompleteSnapshotRequest[src]

impl PartialEq<CompleteSnapshotRequest> for CompleteSnapshotRequest[src]

impl Serialize for CompleteSnapshotRequest[src]

impl StructuralPartialEq for CompleteSnapshotRequest[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> 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.