aws_sdk_omics/client/
get_read_set.rs

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