// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeServiceJob`](crate::operation::describe_service_job::builders::DescribeServiceJobFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`job_id(impl Into<String>)`](crate::operation::describe_service_job::builders::DescribeServiceJobFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::describe_service_job::builders::DescribeServiceJobFluentBuilder::set_job_id):<br>required: **true**<br><p>The job ID for the service job to describe.</p><br>
/// - On success, responds with [`DescribeServiceJobOutput`](crate::operation::describe_service_job::DescribeServiceJobOutput) with field(s):
/// - [`attempts(Option<Vec::<ServiceJobAttemptDetail>>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::attempts): <p>A list of job attempts associated with the service job.</p>
/// - [`capacity_usage(Option<Vec::<ServiceJobCapacityUsageDetail>>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::capacity_usage): <p>The configured capacity for the service job, such as the number of instances. The number of instances should be the same value as the <code>serviceRequestPayload.InstanceCount</code> field.</p>
/// - [`created_at(Option<i64>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::created_at): <p>The Unix timestamp (in milliseconds) for when the service job was created.</p>
/// - [`is_terminated(Option<bool>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::is_terminated): <p>Indicates whether the service job has been terminated.</p>
/// - [`job_arn(Option<String>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::job_arn): <p>The Amazon Resource Name (ARN) of the service job.</p>
/// - [`job_id(Option<String>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::job_id): <p>The job ID for the service job.</p>
/// - [`job_name(Option<String>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::job_name): <p>The name of the service job.</p>
/// - [`job_queue(Option<String>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::job_queue): <p>The ARN of the job queue that the service job is associated with.</p>
/// - [`latest_attempt(Option<LatestServiceJobAttempt>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::latest_attempt): <p>The latest attempt associated with the service job.</p>
/// - [`retry_strategy(Option<ServiceJobRetryStrategy>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::retry_strategy): <p>The retry strategy to use for failed service jobs that are submitted with this service job.</p>
/// - [`scheduled_at(Option<i64>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::scheduled_at): <p>The Unix timestamp (in milliseconds) for when the service job was scheduled. This represents when the service job was dispatched to SageMaker and the service job transitioned to the <code>SCHEDULED</code> state.</p>
/// - [`scheduling_priority(Option<i32>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::scheduling_priority): <p>The scheduling priority of the service job.</p>
/// - [`service_request_payload(Option<String>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::service_request_payload): <p>The request, in JSON, for the service that the <code>SubmitServiceJob</code> operation is queueing.</p>
/// - [`service_job_type(Option<ServiceJobType>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::service_job_type): <p>The type of service job. For SageMaker Training jobs, this value is <code>SAGEMAKER_TRAINING</code>.</p>
/// - [`share_identifier(Option<String>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::share_identifier): <p>The share identifier for the service job. This is used for fair-share scheduling.</p>
/// - [`quota_share_name(Option<String>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::quota_share_name): <p>The name of the quota share that the service job is associated with.</p>
/// - [`preemption_configuration(Option<ServiceJobPreemptionConfiguration>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::preemption_configuration): <p>Specifies the service job behavior when preempted.</p>
/// - [`preemption_summary(Option<ServiceJobPreemptionSummary>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::preemption_summary): <p>Summarizes the preemptions of the service job. This field appears on a service job when it has been preempted.</p>
/// - [`started_at(Option<i64>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::started_at): <p>The Unix timestamp (in milliseconds) for when the service job was started.</p>
/// - [`status(Option<ServiceJobStatus>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::status): <p>The current status of the service job.</p>
/// - [`status_reason(Option<String>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::status_reason): <p>A short, human-readable string to provide more details for the current status of the service job.</p>
/// - [`stopped_at(Option<i64>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::stopped_at): <p>The Unix timestamp (in milliseconds) for when the service job stopped running.</p>
/// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::tags): <p>The tags that are associated with the service job. Each tag consists of a key and an optional value. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html">Tagging your Batch resources</a>.</p>
/// - [`timeout_config(Option<ServiceJobTimeout>)`](crate::operation::describe_service_job::DescribeServiceJobOutput::timeout_config): <p>The timeout configuration for the service job.</p>
/// - On failure, responds with [`SdkError<DescribeServiceJobError>`](crate::operation::describe_service_job::DescribeServiceJobError)
pub fn describe_service_job(&self) -> crate::operation::describe_service_job::builders::DescribeServiceJobFluentBuilder {
crate::operation::describe_service_job::builders::DescribeServiceJobFluentBuilder::new(self.handle.clone())
}
}