Struct aws_sdk_ebs::input::CompleteSnapshotInput
source · [−]#[non_exhaustive]pub struct CompleteSnapshotInput { /* private fields */ }Implementations
sourceimpl CompleteSnapshotInput
impl CompleteSnapshotInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CompleteSnapshot, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CompleteSnapshot, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CompleteSnapshot>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CompleteSnapshotInput.
sourceimpl CompleteSnapshotInput
impl CompleteSnapshotInput
sourcepub fn snapshot_id(&self) -> Option<&str>
pub fn snapshot_id(&self) -> Option<&str>
The ID of the snapshot.
sourcepub fn changed_blocks_count(&self) -> Option<i32>
pub fn changed_blocks_count(&self) -> Option<i32>
The number of blocks that were written to the snapshot.
sourcepub fn checksum(&self) -> Option<&str>
pub fn checksum(&self) -> Option<&str>
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.
sourcepub fn checksum_algorithm(&self) -> Option<&ChecksumAlgorithm>
pub fn checksum_algorithm(&self) -> Option<&ChecksumAlgorithm>
The algorithm used to generate the checksum. Currently, the only supported algorithm is SHA256.
sourcepub fn checksum_aggregation_method(&self) -> Option<&ChecksumAggregationMethod>
pub fn checksum_aggregation_method(&self) -> Option<&ChecksumAggregationMethod>
The aggregation method used to generate the checksum. Currently, the only supported aggregation method is LINEAR.
Trait Implementations
sourceimpl Clone for CompleteSnapshotInput
impl Clone for CompleteSnapshotInput
sourcefn clone(&self) -> CompleteSnapshotInput
fn clone(&self) -> CompleteSnapshotInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CompleteSnapshotInput
impl Debug for CompleteSnapshotInput
sourceimpl PartialEq<CompleteSnapshotInput> for CompleteSnapshotInput
impl PartialEq<CompleteSnapshotInput> for CompleteSnapshotInput
sourcefn eq(&self, other: &CompleteSnapshotInput) -> bool
fn eq(&self, other: &CompleteSnapshotInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CompleteSnapshotInput) -> bool
fn ne(&self, other: &CompleteSnapshotInput) -> bool
This method tests for !=.
impl StructuralPartialEq for CompleteSnapshotInput
Auto Trait Implementations
impl RefUnwindSafe for CompleteSnapshotInput
impl Send for CompleteSnapshotInput
impl Sync for CompleteSnapshotInput
impl Unpin for CompleteSnapshotInput
impl UnwindSafe for CompleteSnapshotInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more