aws_sdk_personalize/client/
describe_batch_segment_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 [`DescribeBatchSegmentJob`](crate::operation::describe_batch_segment_job::builders::DescribeBatchSegmentJobFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`batch_segment_job_arn(impl Into<String>)`](crate::operation::describe_batch_segment_job::builders::DescribeBatchSegmentJobFluentBuilder::batch_segment_job_arn) / [`set_batch_segment_job_arn(Option<String>)`](crate::operation::describe_batch_segment_job::builders::DescribeBatchSegmentJobFluentBuilder::set_batch_segment_job_arn):<br>required: **true**<br><p>The ARN of the batch segment job to describe.</p><br>
7    /// - On success, responds with [`DescribeBatchSegmentJobOutput`](crate::operation::describe_batch_segment_job::DescribeBatchSegmentJobOutput) with field(s):
8    ///   - [`batch_segment_job(Option<BatchSegmentJob>)`](crate::operation::describe_batch_segment_job::DescribeBatchSegmentJobOutput::batch_segment_job): <p>Information on the specified batch segment job.</p>
9    /// - On failure, responds with [`SdkError<DescribeBatchSegmentJobError>`](crate::operation::describe_batch_segment_job::DescribeBatchSegmentJobError)
10    pub fn describe_batch_segment_job(&self) -> crate::operation::describe_batch_segment_job::builders::DescribeBatchSegmentJobFluentBuilder {
11        crate::operation::describe_batch_segment_job::builders::DescribeBatchSegmentJobFluentBuilder::new(self.handle.clone())
12    }
13}