Struct aws_sdk_comprehend::operation::start_events_detection_job::StartEventsDetectionJobOutput
source · #[non_exhaustive]pub struct StartEventsDetectionJobOutput {
pub job_id: Option<String>,
pub job_arn: Option<String>,
pub job_status: Option<JobStatus>,
/* 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.job_id: Option<String>An unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.
job_arn: Option<String>The Amazon Resource Name (ARN) of the events detection job. It is a unique, fully qualified identifier for the job. It includes the Amazon Web Services account, Amazon Web Services Region, and the job ID. The format of the ARN is as follows:
arn:
The following is an example job ARN:
arn:aws:comprehend:us-west-2:111122223333:events-detection-job/1234abcd12ab34cd56ef1234567890ab
job_status: Option<JobStatus>The status of the events detection job.
Implementations§
source§impl StartEventsDetectionJobOutput
impl StartEventsDetectionJobOutput
sourcepub fn job_id(&self) -> Option<&str>
pub fn job_id(&self) -> Option<&str>
An unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.
sourcepub fn job_arn(&self) -> Option<&str>
pub fn job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the events detection job. It is a unique, fully qualified identifier for the job. It includes the Amazon Web Services account, Amazon Web Services Region, and the job ID. The format of the ARN is as follows:
arn:
The following is an example job ARN:
arn:aws:comprehend:us-west-2:111122223333:events-detection-job/1234abcd12ab34cd56ef1234567890ab
sourcepub fn job_status(&self) -> Option<&JobStatus>
pub fn job_status(&self) -> Option<&JobStatus>
The status of the events detection job.
source§impl StartEventsDetectionJobOutput
impl StartEventsDetectionJobOutput
sourcepub fn builder() -> StartEventsDetectionJobOutputBuilder
pub fn builder() -> StartEventsDetectionJobOutputBuilder
Creates a new builder-style object to manufacture StartEventsDetectionJobOutput.
Trait Implementations§
source§impl Clone for StartEventsDetectionJobOutput
impl Clone for StartEventsDetectionJobOutput
source§fn clone(&self) -> StartEventsDetectionJobOutput
fn clone(&self) -> StartEventsDetectionJobOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for StartEventsDetectionJobOutput
impl PartialEq for StartEventsDetectionJobOutput
source§fn eq(&self, other: &StartEventsDetectionJobOutput) -> bool
fn eq(&self, other: &StartEventsDetectionJobOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for StartEventsDetectionJobOutput
impl RequestId for StartEventsDetectionJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for StartEventsDetectionJobOutput
Auto Trait Implementations§
impl Freeze for StartEventsDetectionJobOutput
impl RefUnwindSafe for StartEventsDetectionJobOutput
impl Send for StartEventsDetectionJobOutput
impl Sync for StartEventsDetectionJobOutput
impl Unpin for StartEventsDetectionJobOutput
impl UnwindSafe for StartEventsDetectionJobOutput
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