1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`NotifyObjectComplete`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`backup_job_id(impl Into<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::backup_job_id) / [`set_backup_job_id(Option<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_backup_job_id): Backup job Id for the in-progress backup
    ///   - [`upload_id(impl Into<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::upload_id) / [`set_upload_id(Option<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_upload_id): Upload Id for the in-progress upload
    ///   - [`object_checksum(impl Into<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::object_checksum) / [`set_object_checksum(Option<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_object_checksum): Object checksum
    ///   - [`object_checksum_algorithm(SummaryChecksumAlgorithm)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::object_checksum_algorithm) / [`set_object_checksum_algorithm(Option<SummaryChecksumAlgorithm>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_object_checksum_algorithm): Checksum algorithm
    ///   - [`metadata_string(impl Into<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::metadata_string) / [`set_metadata_string(Option<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_metadata_string): Optional metadata associated with an Object. Maximum string length is 256 bytes.
    ///   - [`metadata_blob(ByteStream)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::metadata_blob) / [`set_metadata_blob(ByteStream)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_metadata_blob): Optional metadata associated with an Object. Maximum length is 4MB.
    ///   - [`metadata_blob_length(i64)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::metadata_blob_length) / [`set_metadata_blob_length(i64)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_metadata_blob_length): The size of MetadataBlob.
    ///   - [`metadata_blob_checksum(impl Into<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::metadata_blob_checksum) / [`set_metadata_blob_checksum(Option<String>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_metadata_blob_checksum): Checksum of MetadataBlob.
    ///   - [`metadata_blob_checksum_algorithm(DataChecksumAlgorithm)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::metadata_blob_checksum_algorithm) / [`set_metadata_blob_checksum_algorithm(Option<DataChecksumAlgorithm>)`](crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::set_metadata_blob_checksum_algorithm): Checksum algorithm.
    /// - On success, responds with [`NotifyObjectCompleteOutput`](crate::operation::notify_object_complete::NotifyObjectCompleteOutput) with field(s):
    ///   - [`object_checksum(Option<String>)`](crate::operation::notify_object_complete::NotifyObjectCompleteOutput::object_checksum): Object checksum
    ///   - [`object_checksum_algorithm(Option<SummaryChecksumAlgorithm>)`](crate::operation::notify_object_complete::NotifyObjectCompleteOutput::object_checksum_algorithm): Checksum algorithm
    /// - On failure, responds with [`SdkError<NotifyObjectCompleteError>`](crate::operation::notify_object_complete::NotifyObjectCompleteError)
    pub fn notify_object_complete(&self) -> crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder {
        crate::operation::notify_object_complete::builders::NotifyObjectCompleteFluentBuilder::new(self.handle.clone())
    }
}