aws_sdk_sagemakergeospatial/client/get_vector_enrichment_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 [`GetVectorEnrichmentJob`](crate::operation::get_vector_enrichment_job::builders::GetVectorEnrichmentJobFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arn(impl Into<String>)`](crate::operation::get_vector_enrichment_job::builders::GetVectorEnrichmentJobFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::get_vector_enrichment_job::builders::GetVectorEnrichmentJobFluentBuilder::set_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p><br>
7 /// - On success, responds with [`GetVectorEnrichmentJobOutput`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput) with field(s):
8 /// - [`arn(String)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::arn): <p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p>
9 /// - [`r#type(VectorEnrichmentJobType)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::type): <p>The type of the Vector Enrichment job being initiated.</p>
10 /// - [`name(String)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::name): <p>The name of the Vector Enrichment job.</p>
11 /// - [`creation_time(DateTime)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::creation_time): <p>The creation time.</p>
12 /// - [`duration_in_seconds(i32)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::duration_in_seconds): <p>The duration of the Vector Enrichment job, in seconds.</p>
13 /// - [`status(VectorEnrichmentJobStatus)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::status): <p>The status of the initiated Vector Enrichment job.</p>
14 /// - [`kms_key_id(Option<String>)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::kms_key_id): <p>The Key Management Service key ID for server-side encryption.</p>
15 /// - [`input_config(Option<VectorEnrichmentJobInputConfig>)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::input_config): <p>Input configuration information for the Vector Enrichment job.</p>
16 /// - [`job_config(Option<VectorEnrichmentJobConfig>)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::job_config): <p>An object containing information about the job configuration.</p>
17 /// - [`execution_role_arn(String)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::execution_role_arn): <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
18 /// - [`error_details(Option<VectorEnrichmentJobErrorDetails>)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::error_details): <p>Details about the errors generated during the Vector Enrichment job.</p>
19 /// - [`export_status(Option<VectorEnrichmentJobExportStatus>)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::export_status): <p>The export status of the Vector Enrichment job being initiated.</p>
20 /// - [`export_error_details(Option<VectorEnrichmentJobExportErrorDetails>)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::export_error_details): <p>Details about the errors generated during the ExportVectorEnrichmentJob.</p>
21 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobOutput::tags): <p>Each tag consists of a key and a value.</p>
22 /// - On failure, responds with [`SdkError<GetVectorEnrichmentJobError>`](crate::operation::get_vector_enrichment_job::GetVectorEnrichmentJobError)
23 pub fn get_vector_enrichment_job(&self) -> crate::operation::get_vector_enrichment_job::builders::GetVectorEnrichmentJobFluentBuilder {
24 crate::operation::get_vector_enrichment_job::builders::GetVectorEnrichmentJobFluentBuilder::new(self.handle.clone())
25 }
26}