Struct aws_sdk_comprehend::operation::stop_dominant_language_detection_job::builders::StopDominantLanguageDetectionJobOutputBuilder
source · #[non_exhaustive]pub struct StopDominantLanguageDetectionJobOutputBuilder { /* private fields */ }Expand description
A builder for StopDominantLanguageDetectionJobOutput.
Implementations§
source§impl StopDominantLanguageDetectionJobOutputBuilder
impl StopDominantLanguageDetectionJobOutputBuilder
sourcepub fn job_id(self, input: impl Into<String>) -> Self
pub fn job_id(self, input: impl Into<String>) -> Self
The identifier of the dominant language detection job to stop.
sourcepub fn set_job_id(self, input: Option<String>) -> Self
pub fn set_job_id(self, input: Option<String>) -> Self
The identifier of the dominant language detection job to stop.
sourcepub fn get_job_id(&self) -> &Option<String>
pub fn get_job_id(&self) -> &Option<String>
The identifier of the dominant language detection job to stop.
sourcepub fn job_status(self, input: JobStatus) -> Self
pub fn job_status(self, input: JobStatus) -> Self
Either STOP_REQUESTED if the job is currently running, or STOPPED if the job was previously stopped with the StopDominantLanguageDetectionJob operation.
sourcepub fn set_job_status(self, input: Option<JobStatus>) -> Self
pub fn set_job_status(self, input: Option<JobStatus>) -> Self
Either STOP_REQUESTED if the job is currently running, or STOPPED if the job was previously stopped with the StopDominantLanguageDetectionJob operation.
sourcepub fn get_job_status(&self) -> &Option<JobStatus>
pub fn get_job_status(&self) -> &Option<JobStatus>
Either STOP_REQUESTED if the job is currently running, or STOPPED if the job was previously stopped with the StopDominantLanguageDetectionJob operation.
sourcepub fn build(self) -> StopDominantLanguageDetectionJobOutput
pub fn build(self) -> StopDominantLanguageDetectionJobOutput
Consumes the builder and constructs a StopDominantLanguageDetectionJobOutput.
Trait Implementations§
source§impl Clone for StopDominantLanguageDetectionJobOutputBuilder
impl Clone for StopDominantLanguageDetectionJobOutputBuilder
source§fn clone(&self) -> StopDominantLanguageDetectionJobOutputBuilder
fn clone(&self) -> StopDominantLanguageDetectionJobOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for StopDominantLanguageDetectionJobOutputBuilder
impl Default for StopDominantLanguageDetectionJobOutputBuilder
source§fn default() -> StopDominantLanguageDetectionJobOutputBuilder
fn default() -> StopDominantLanguageDetectionJobOutputBuilder
source§impl PartialEq for StopDominantLanguageDetectionJobOutputBuilder
impl PartialEq for StopDominantLanguageDetectionJobOutputBuilder
source§fn eq(&self, other: &StopDominantLanguageDetectionJobOutputBuilder) -> bool
fn eq(&self, other: &StopDominantLanguageDetectionJobOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StopDominantLanguageDetectionJobOutputBuilder
Auto Trait Implementations§
impl Freeze for StopDominantLanguageDetectionJobOutputBuilder
impl RefUnwindSafe for StopDominantLanguageDetectionJobOutputBuilder
impl Send for StopDominantLanguageDetectionJobOutputBuilder
impl Sync for StopDominantLanguageDetectionJobOutputBuilder
impl Unpin for StopDominantLanguageDetectionJobOutputBuilder
impl UnwindSafe for StopDominantLanguageDetectionJobOutputBuilder
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