1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartVectorEnrichmentJob`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::set_name):<br>required: **true**<br><p>The name of the Vector Enrichment job.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique token that guarantees that the call to this API is idempotent.</p><br>
    ///   - [`kms_key_id(impl Into<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::kms_key_id) / [`set_kms_key_id(Option<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::set_kms_key_id):<br>required: **false**<br><p>The Key Management Service key ID for server-side encryption.</p><br>
    ///   - [`input_config(VectorEnrichmentJobInputConfig)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::input_config) / [`set_input_config(Option<VectorEnrichmentJobInputConfig>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::set_input_config):<br>required: **true**<br><p>Input configuration information for the Vector Enrichment job.</p><br>
    ///   - [`job_config(VectorEnrichmentJobConfig)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::job_config) / [`set_job_config(Option<VectorEnrichmentJobConfig>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::set_job_config):<br>required: **true**<br><p>An object containing information about the job configuration.</p><br>
    ///   - [`execution_role_arn(impl Into<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::execution_role_arn) / [`set_execution_role_arn(Option<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::set_execution_role_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::set_tags):<br>required: **false**<br><p>Each tag consists of a key and a value.</p><br>
    /// - On success, responds with [`StartVectorEnrichmentJobOutput`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput) with field(s):
    ///   - [`name(String)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::name): <p>The name of the Vector Enrichment job.</p>
    ///   - [`arn(String)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::arn): <p>The Amazon Resource Name (ARN) of the Vector Enrichment job.</p>
    ///   - [`r#type(VectorEnrichmentJobType)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::type): <p>The type of the Vector Enrichment job.</p>
    ///   - [`creation_time(DateTime)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::creation_time): <p>The creation time.</p>
    ///   - [`duration_in_seconds(i32)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::duration_in_seconds): <p>The duration of the Vector Enrichment job, in seconds.</p>
    ///   - [`status(VectorEnrichmentJobStatus)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::status): <p>The status of the Vector Enrichment job being started.</p>
    ///   - [`kms_key_id(Option<String>)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::kms_key_id): <p>The Key Management Service key ID for server-side encryption.</p>
    ///   - [`input_config(Option<VectorEnrichmentJobInputConfig>)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::input_config): <p>Input configuration information for starting the Vector Enrichment job.</p>
    ///   - [`job_config(Option<VectorEnrichmentJobConfig>)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::job_config): <p>An object containing information about the job configuration.</p>
    ///   - [`execution_role_arn(String)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::execution_role_arn): <p>The Amazon Resource Name (ARN) of the IAM role that you specified for the job.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobOutput::tags): <p>Each tag consists of a key and a value.</p>
    /// - On failure, responds with [`SdkError<StartVectorEnrichmentJobError>`](crate::operation::start_vector_enrichment_job::StartVectorEnrichmentJobError)
    pub fn start_vector_enrichment_job(&self) -> crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder {
        crate::operation::start_vector_enrichment_job::builders::StartVectorEnrichmentJobFluentBuilder::new(self.handle.clone())
    }
}