Struct aws_sdk_ebs::input::CompleteSnapshotInput [−][src]
#[non_exhaustive]pub struct CompleteSnapshotInput {
pub snapshot_id: Option<String>,
pub changed_blocks_count: Option<i32>,
pub checksum: Option<String>,
pub checksum_algorithm: Option<ChecksumAlgorithm>,
pub checksum_aggregation_method: Option<ChecksumAggregationMethod>,
}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.snapshot_id: Option<String>The ID of the snapshot.
changed_blocks_count: Option<i32>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_algorithm: Option<ChecksumAlgorithm>The algorithm used to generate the checksum. Currently, the only supported algorithm is SHA256.
checksum_aggregation_method: Option<ChecksumAggregationMethod>The aggregation method used to generate the checksum. Currently, the only supported aggregation method is LINEAR.
Implementations
pub 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>
Creates a new builder-style object to manufacture CompleteSnapshotInput
The ID of the snapshot.
The number of blocks that were written to the snapshot.
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.
The algorithm used to generate the checksum. Currently, the only supported algorithm is SHA256.
The aggregation method used to generate the checksum. Currently, the only supported aggregation method is LINEAR.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
