Struct aws_sdk_omics::operation::create_multipart_read_set_upload::CreateMultipartReadSetUploadOutput
source · #[non_exhaustive]pub struct CreateMultipartReadSetUploadOutput {
pub sequence_store_id: String,
pub upload_id: String,
pub source_file_type: FileType,
pub subject_id: String,
pub sample_id: String,
pub generated_from: Option<String>,
pub reference_arn: String,
pub name: Option<String>,
pub description: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub creation_time: DateTime,
/* private fields */
}
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.sequence_store_id: String
The sequence store ID for the store that the read set will be created in.
upload_id: String
The ID for the initiated multipart upload.
source_file_type: FileType
The file type of the read set source.
subject_id: String
The source's subject ID.
sample_id: String
The source's sample ID.
generated_from: Option<String>
The source of the read set.
reference_arn: String
The read set source's reference ARN.
name: Option<String>
The name of the read set.
description: Option<String>
The description of the read set.
The tags to add to the read set.
creation_time: DateTime
The creation time of the multipart upload.
Implementations§
source§impl CreateMultipartReadSetUploadOutput
impl CreateMultipartReadSetUploadOutput
sourcepub fn sequence_store_id(&self) -> &str
pub fn sequence_store_id(&self) -> &str
The sequence store ID for the store that the read set will be created in.
sourcepub fn source_file_type(&self) -> &FileType
pub fn source_file_type(&self) -> &FileType
The file type of the read set source.
sourcepub fn subject_id(&self) -> &str
pub fn subject_id(&self) -> &str
The source's subject ID.
sourcepub fn generated_from(&self) -> Option<&str>
pub fn generated_from(&self) -> Option<&str>
The source of the read set.
sourcepub fn reference_arn(&self) -> &str
pub fn reference_arn(&self) -> &str
The read set source's reference ARN.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the read set.
The tags to add to the read set.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The creation time of the multipart upload.
source§impl CreateMultipartReadSetUploadOutput
impl CreateMultipartReadSetUploadOutput
sourcepub fn builder() -> CreateMultipartReadSetUploadOutputBuilder
pub fn builder() -> CreateMultipartReadSetUploadOutputBuilder
Creates a new builder-style object to manufacture CreateMultipartReadSetUploadOutput
.
Trait Implementations§
source§impl Clone for CreateMultipartReadSetUploadOutput
impl Clone for CreateMultipartReadSetUploadOutput
source§fn clone(&self) -> CreateMultipartReadSetUploadOutput
fn clone(&self) -> CreateMultipartReadSetUploadOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateMultipartReadSetUploadOutput
impl PartialEq for CreateMultipartReadSetUploadOutput
source§fn eq(&self, other: &CreateMultipartReadSetUploadOutput) -> bool
fn eq(&self, other: &CreateMultipartReadSetUploadOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateMultipartReadSetUploadOutput
impl RequestId for CreateMultipartReadSetUploadOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for CreateMultipartReadSetUploadOutput
Auto Trait Implementations§
impl Freeze for CreateMultipartReadSetUploadOutput
impl RefUnwindSafe for CreateMultipartReadSetUploadOutput
impl Send for CreateMultipartReadSetUploadOutput
impl Sync for CreateMultipartReadSetUploadOutput
impl Unpin for CreateMultipartReadSetUploadOutput
impl UnwindSafe for CreateMultipartReadSetUploadOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more