Struct aws_sdk_omics::operation::upload_read_set_part::builders::UploadReadSetPartInputBuilder
source · #[non_exhaustive]pub struct UploadReadSetPartInputBuilder { /* private fields */ }
Expand description
A builder for UploadReadSetPartInput
.
Implementations§
source§impl UploadReadSetPartInputBuilder
impl UploadReadSetPartInputBuilder
sourcepub fn sequence_store_id(self, input: impl Into<String>) -> Self
pub fn sequence_store_id(self, input: impl Into<String>) -> Self
The Sequence Store ID used for the multipart upload.
sourcepub fn set_sequence_store_id(self, input: Option<String>) -> Self
pub fn set_sequence_store_id(self, input: Option<String>) -> Self
The Sequence Store ID used for the multipart upload.
sourcepub fn upload_id(self, input: impl Into<String>) -> Self
pub fn upload_id(self, input: impl Into<String>) -> Self
The ID for the initiated multipart upload.
sourcepub fn set_upload_id(self, input: Option<String>) -> Self
pub fn set_upload_id(self, input: Option<String>) -> Self
The ID for the initiated multipart upload.
sourcepub fn part_source(self, input: ReadSetPartSource) -> Self
pub fn part_source(self, input: ReadSetPartSource) -> Self
The source file for an upload part.
sourcepub fn set_part_source(self, input: Option<ReadSetPartSource>) -> Self
pub fn set_part_source(self, input: Option<ReadSetPartSource>) -> Self
The source file for an upload part.
sourcepub fn part_number(self, input: i32) -> Self
pub fn part_number(self, input: i32) -> Self
The number of the part being uploaded.
sourcepub fn set_part_number(self, input: Option<i32>) -> Self
pub fn set_part_number(self, input: Option<i32>) -> Self
The number of the part being uploaded.
sourcepub fn payload(self, input: ByteStream) -> Self
pub fn payload(self, input: ByteStream) -> Self
The read set data to upload for a part.
sourcepub fn set_payload(self, input: Option<ByteStream>) -> Self
pub fn set_payload(self, input: Option<ByteStream>) -> Self
The read set data to upload for a part.
sourcepub fn build(self) -> Result<UploadReadSetPartInput, BuildError>
pub fn build(self) -> Result<UploadReadSetPartInput, BuildError>
Consumes the builder and constructs a UploadReadSetPartInput
.
Trait Implementations§
source§impl Default for UploadReadSetPartInputBuilder
impl Default for UploadReadSetPartInputBuilder
source§fn default() -> UploadReadSetPartInputBuilder
fn default() -> UploadReadSetPartInputBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for UploadReadSetPartInputBuilder
impl Send for UploadReadSetPartInputBuilder
impl Sync for UploadReadSetPartInputBuilder
impl Unpin for UploadReadSetPartInputBuilder
impl !UnwindSafe for UploadReadSetPartInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more