1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateModelManifest`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::set_name): <p> The name of the vehicle model to update. </p>
    ///   - [`description(impl Into<String>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::set_description): <p> A brief description of the vehicle model. </p>
    ///   - [`nodes_to_add(impl Into<String>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::nodes_to_add) / [`set_nodes_to_add(Option<Vec<String>>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::set_nodes_to_add): <p> A list of <code>fullyQualifiedName</code> of nodes, which are a general abstraction of signals, to add to the vehicle model. </p>
    ///   - [`nodes_to_remove(impl Into<String>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::nodes_to_remove) / [`set_nodes_to_remove(Option<Vec<String>>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::set_nodes_to_remove): <p> A list of <code>fullyQualifiedName</code> of nodes, which are a general abstraction of signals, to remove from the vehicle model. </p>
    ///   - [`status(ManifestStatus)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::status) / [`set_status(Option<ManifestStatus>)`](crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::set_status): <p> The state of the vehicle model. If the status is <code>ACTIVE</code>, the vehicle model can't be edited. If the status is <code>DRAFT</code>, you can edit the vehicle model. </p>
    /// - On success, responds with [`UpdateModelManifestOutput`](crate::operation::update_model_manifest::UpdateModelManifestOutput) with field(s):
    ///   - [`name(Option<String>)`](crate::operation::update_model_manifest::UpdateModelManifestOutput::name): <p> The name of the updated vehicle model. </p>
    ///   - [`arn(Option<String>)`](crate::operation::update_model_manifest::UpdateModelManifestOutput::arn): <p> The Amazon Resource Name (ARN) of the updated vehicle model. </p>
    /// - On failure, responds with [`SdkError<UpdateModelManifestError>`](crate::operation::update_model_manifest::UpdateModelManifestError)
    pub fn update_model_manifest(&self) -> crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder {
        crate::operation::update_model_manifest::builders::UpdateModelManifestFluentBuilder::new(self.handle.clone())
    }
}