Struct aws_sdk_omics::operation::get_reference_import_job::builders::GetReferenceImportJobOutputBuilder
source · #[non_exhaustive]pub struct GetReferenceImportJobOutputBuilder { /* private fields */ }
Expand description
A builder for GetReferenceImportJobOutput
.
Implementations§
source§impl GetReferenceImportJobOutputBuilder
impl GetReferenceImportJobOutputBuilder
sourcepub fn reference_store_id(self, input: impl Into<String>) -> Self
pub fn reference_store_id(self, input: impl Into<String>) -> Self
The job's reference store ID.
This field is required.sourcepub fn set_reference_store_id(self, input: Option<String>) -> Self
pub fn set_reference_store_id(self, input: Option<String>) -> Self
The job's reference store ID.
sourcepub fn get_reference_store_id(&self) -> &Option<String>
pub fn get_reference_store_id(&self) -> &Option<String>
The job's reference store ID.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The job's service role ARN.
This field is required.sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The job's service role ARN.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The job's service role ARN.
sourcepub fn status(self, input: ReferenceImportJobStatus) -> Self
pub fn status(self, input: ReferenceImportJobStatus) -> Self
The job's status.
This field is required.sourcepub fn set_status(self, input: Option<ReferenceImportJobStatus>) -> Self
pub fn set_status(self, input: Option<ReferenceImportJobStatus>) -> Self
The job's status.
sourcepub fn get_status(&self) -> &Option<ReferenceImportJobStatus>
pub fn get_status(&self) -> &Option<ReferenceImportJobStatus>
The job's status.
sourcepub fn status_message(self, input: impl Into<String>) -> Self
pub fn status_message(self, input: impl Into<String>) -> Self
The job's status message.
sourcepub fn set_status_message(self, input: Option<String>) -> Self
pub fn set_status_message(self, input: Option<String>) -> Self
The job's status message.
sourcepub fn get_status_message(&self) -> &Option<String>
pub fn get_status_message(&self) -> &Option<String>
The job's status message.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
When the job was created.
This field is required.sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
When the job was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
When the job was created.
sourcepub fn completion_time(self, input: DateTime) -> Self
pub fn completion_time(self, input: DateTime) -> Self
When the job completed.
sourcepub fn set_completion_time(self, input: Option<DateTime>) -> Self
pub fn set_completion_time(self, input: Option<DateTime>) -> Self
When the job completed.
sourcepub fn get_completion_time(&self) -> &Option<DateTime>
pub fn get_completion_time(&self) -> &Option<DateTime>
When the job completed.
sourcepub fn sources(self, input: ImportReferenceSourceItem) -> Self
pub fn sources(self, input: ImportReferenceSourceItem) -> Self
Appends an item to sources
.
To override the contents of this collection use set_sources
.
The job's source files.
sourcepub fn set_sources(self, input: Option<Vec<ImportReferenceSourceItem>>) -> Self
pub fn set_sources(self, input: Option<Vec<ImportReferenceSourceItem>>) -> Self
The job's source files.
sourcepub fn get_sources(&self) -> &Option<Vec<ImportReferenceSourceItem>>
pub fn get_sources(&self) -> &Option<Vec<ImportReferenceSourceItem>>
The job's source files.
sourcepub fn build(self) -> Result<GetReferenceImportJobOutput, BuildError>
pub fn build(self) -> Result<GetReferenceImportJobOutput, BuildError>
Consumes the builder and constructs a GetReferenceImportJobOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for GetReferenceImportJobOutputBuilder
impl Clone for GetReferenceImportJobOutputBuilder
source§fn clone(&self) -> GetReferenceImportJobOutputBuilder
fn clone(&self) -> GetReferenceImportJobOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetReferenceImportJobOutputBuilder
impl Default for GetReferenceImportJobOutputBuilder
source§fn default() -> GetReferenceImportJobOutputBuilder
fn default() -> GetReferenceImportJobOutputBuilder
source§impl PartialEq for GetReferenceImportJobOutputBuilder
impl PartialEq for GetReferenceImportJobOutputBuilder
source§fn eq(&self, other: &GetReferenceImportJobOutputBuilder) -> bool
fn eq(&self, other: &GetReferenceImportJobOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetReferenceImportJobOutputBuilder
Auto Trait Implementations§
impl Freeze for GetReferenceImportJobOutputBuilder
impl RefUnwindSafe for GetReferenceImportJobOutputBuilder
impl Send for GetReferenceImportJobOutputBuilder
impl Sync for GetReferenceImportJobOutputBuilder
impl Unpin for GetReferenceImportJobOutputBuilder
impl UnwindSafe for GetReferenceImportJobOutputBuilder
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