1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetReadSet`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl ::std::convert::Into<String>)`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder::set_id): <p>The read set's ID.</p>
    ///   - [`sequence_store_id(impl ::std::convert::Into<String>)`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder::sequence_store_id) / [`set_sequence_store_id(Option<String>)`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder::set_sequence_store_id): <p>The read set's sequence store ID.</p>
    ///   - [`file(ReadSetFile)`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder::file) / [`set_file(Option<ReadSetFile>)`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder::set_file): <p>The file to retrieve.</p>
    ///   - [`part_number(i32)`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder::part_number) / [`set_part_number(Option<i32>)`](crate::operation::get_read_set::builders::GetReadSetFluentBuilder::set_part_number): <p>The part number to retrieve.</p>
    /// - On success, responds with [`GetReadSetOutput`](crate::operation::get_read_set::GetReadSetOutput) with field(s):
    ///   - [`payload(ByteStream)`](crate::operation::get_read_set::GetReadSetOutput::payload): <p>The read set file payload.</p>
    /// - On failure, responds with [`SdkError<GetReadSetError>`](crate::operation::get_read_set::GetReadSetError)
    pub fn get_read_set(
        &self,
    ) -> crate::operation::get_read_set::builders::GetReadSetFluentBuilder {
        crate::operation::get_read_set::builders::GetReadSetFluentBuilder::new(self.handle.clone())
    }
}