Struct aws_sdk_ebs::types::ChangedBlock
source · #[non_exhaustive]pub struct ChangedBlock {
pub block_index: Option<i32>,
pub first_block_token: Option<String>,
pub second_block_token: Option<String>,
}Expand description
A block of data in an Amazon Elastic Block Store snapshot that is different from another snapshot of the same volume/snapshot lineage.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.block_index: Option<i32>The block index.
first_block_token: Option<String>The block token for the block index of the FirstSnapshotId specified in the ListChangedBlocks operation. This value is absent if the first snapshot does not have the changed block that is on the second snapshot.
second_block_token: Option<String>The block token for the block index of the SecondSnapshotId specified in the ListChangedBlocks operation.
Implementations§
source§impl ChangedBlock
impl ChangedBlock
sourcepub fn block_index(&self) -> Option<i32>
pub fn block_index(&self) -> Option<i32>
The block index.
sourcepub fn first_block_token(&self) -> Option<&str>
pub fn first_block_token(&self) -> Option<&str>
The block token for the block index of the FirstSnapshotId specified in the ListChangedBlocks operation. This value is absent if the first snapshot does not have the changed block that is on the second snapshot.
sourcepub fn second_block_token(&self) -> Option<&str>
pub fn second_block_token(&self) -> Option<&str>
The block token for the block index of the SecondSnapshotId specified in the ListChangedBlocks operation.
source§impl ChangedBlock
impl ChangedBlock
sourcepub fn builder() -> ChangedBlockBuilder
pub fn builder() -> ChangedBlockBuilder
Creates a new builder-style object to manufacture ChangedBlock.
Trait Implementations§
source§impl Clone for ChangedBlock
impl Clone for ChangedBlock
source§fn clone(&self) -> ChangedBlock
fn clone(&self) -> ChangedBlock
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ChangedBlock
impl Debug for ChangedBlock
source§impl PartialEq for ChangedBlock
impl PartialEq for ChangedBlock
source§fn eq(&self, other: &ChangedBlock) -> bool
fn eq(&self, other: &ChangedBlock) -> bool
self and other values to be equal, and is used
by ==.