#[non_exhaustive]pub struct StartTopicsDetectionJobOutput { /* private fields */ }Implementations
sourceimpl StartTopicsDetectionJobOutput
impl StartTopicsDetectionJobOutput
sourcepub fn job_id(&self) -> Option<&str>
pub fn job_id(&self) -> Option<&str>
The identifier generated for the job. To get the status of the job, use this identifier with the DescribeTopicDetectionJob operation.
sourcepub fn job_arn(&self) -> Option<&str>
pub fn job_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the topics detection job. It is a unique, fully qualified identifier for the job. It includes the AWS account, 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:document-classification-job/1234abcd12ab34cd56ef1234567890ab
sourcepub fn job_status(&self) -> Option<&JobStatus>
pub fn job_status(&self) -> Option<&JobStatus>
The status of the job:
-
SUBMITTED - The job has been received and is queued for processing.
-
IN_PROGRESS - Amazon Comprehend is processing the job.
-
COMPLETED - The job was successfully completed and the output is available.
-
FAILED - The job did not complete. To get details, use the
DescribeTopicDetectionJoboperation.
sourceimpl StartTopicsDetectionJobOutput
impl StartTopicsDetectionJobOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartTopicsDetectionJobOutput.
Trait Implementations
sourceimpl Clone for StartTopicsDetectionJobOutput
impl Clone for StartTopicsDetectionJobOutput
sourcefn clone(&self) -> StartTopicsDetectionJobOutput
fn clone(&self) -> StartTopicsDetectionJobOutput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more