aws_sdk_comprehend/client/
describe_events_detection_job.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DescribeEventsDetectionJob`](crate::operation::describe_events_detection_job::builders::DescribeEventsDetectionJobFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`job_id(impl Into<String>)`](crate::operation::describe_events_detection_job::builders::DescribeEventsDetectionJobFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::describe_events_detection_job::builders::DescribeEventsDetectionJobFluentBuilder::set_job_id):<br>required: **true**<br><p>The identifier of the events detection job.</p><br>
7    /// - On success, responds with [`DescribeEventsDetectionJobOutput`](crate::operation::describe_events_detection_job::DescribeEventsDetectionJobOutput) with field(s):
8    ///   - [`events_detection_job_properties(Option<EventsDetectionJobProperties>)`](crate::operation::describe_events_detection_job::DescribeEventsDetectionJobOutput::events_detection_job_properties): <p>An object that contains the properties associated with an event detection job.</p>
9    /// - On failure, responds with [`SdkError<DescribeEventsDetectionJobError>`](crate::operation::describe_events_detection_job::DescribeEventsDetectionJobError)
10    pub fn describe_events_detection_job(
11        &self,
12    ) -> crate::operation::describe_events_detection_job::builders::DescribeEventsDetectionJobFluentBuilder {
13        crate::operation::describe_events_detection_job::builders::DescribeEventsDetectionJobFluentBuilder::new(self.handle.clone())
14    }
15}