1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateDecoderManifest`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_name):<br>required: **true**<br><p> The name of the decoder manifest to update.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_description):<br>required: **false**<br><p> A brief description of the decoder manifest to update. </p><br>
    ///   - [`signal_decoders_to_add(SignalDecoder)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::signal_decoders_to_add) / [`set_signal_decoders_to_add(Option<Vec::<SignalDecoder>>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_signal_decoders_to_add):<br>required: **false**<br><p> A list of information about decoding additional signals to add to the decoder manifest. </p><br>
    ///   - [`signal_decoders_to_update(SignalDecoder)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::signal_decoders_to_update) / [`set_signal_decoders_to_update(Option<Vec::<SignalDecoder>>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_signal_decoders_to_update):<br>required: **false**<br><p> A list of updated information about decoding signals to update in the decoder manifest. </p><br>
    ///   - [`signal_decoders_to_remove(impl Into<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::signal_decoders_to_remove) / [`set_signal_decoders_to_remove(Option<Vec::<String>>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_signal_decoders_to_remove):<br>required: **false**<br><p> A list of signal decoders to remove from the decoder manifest. </p><br>
    ///   - [`network_interfaces_to_add(NetworkInterface)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::network_interfaces_to_add) / [`set_network_interfaces_to_add(Option<Vec::<NetworkInterface>>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_network_interfaces_to_add):<br>required: **false**<br><p> A list of information about the network interfaces to add to the decoder manifest. </p><br>
    ///   - [`network_interfaces_to_update(NetworkInterface)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::network_interfaces_to_update) / [`set_network_interfaces_to_update(Option<Vec::<NetworkInterface>>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_network_interfaces_to_update):<br>required: **false**<br><p> A list of information about the network interfaces to update in the decoder manifest. </p><br>
    ///   - [`network_interfaces_to_remove(impl Into<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::network_interfaces_to_remove) / [`set_network_interfaces_to_remove(Option<Vec::<String>>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_network_interfaces_to_remove):<br>required: **false**<br><p> A list of network interfaces to remove from the decoder manifest.</p><br>
    ///   - [`status(ManifestStatus)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::status) / [`set_status(Option<ManifestStatus>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_status):<br>required: **false**<br><p> The state of the decoder manifest. If the status is <code>ACTIVE</code>, the decoder manifest can't be edited. If the status is <code>DRAFT</code>, you can edit the decoder manifest. </p><br>
    /// - On success, responds with [`UpdateDecoderManifestOutput`](crate::operation::update_decoder_manifest::UpdateDecoderManifestOutput) with field(s):
    ///   - [`name(String)`](crate::operation::update_decoder_manifest::UpdateDecoderManifestOutput::name): <p> The name of the updated decoder manifest. </p>
    ///   - [`arn(String)`](crate::operation::update_decoder_manifest::UpdateDecoderManifestOutput::arn): <p> The Amazon Resource Name (ARN) of the updated decoder manifest. </p>
    /// - On failure, responds with [`SdkError<UpdateDecoderManifestError>`](crate::operation::update_decoder_manifest::UpdateDecoderManifestError)
    pub fn update_decoder_manifest(&self) -> crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder {
        crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::new(self.handle.clone())
    }
}