// 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 ::std::convert::Into<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_name): <p> The name of the decoder manifest to update.</p>
/// - [`description(impl ::std::convert::Into<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_description): <p> A brief description of the decoder manifest to update. </p>
/// - [`signal_decoders_to_add(Vec<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): <p> A list of information about decoding additional signals to add to the decoder manifest. </p>
/// - [`signal_decoders_to_update(Vec<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): <p> A list of updated information about decoding signals to update in the decoder manifest. </p>
/// - [`signal_decoders_to_remove(Vec<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): <p> A list of signal decoders to remove from the decoder manifest. </p>
/// - [`network_interfaces_to_add(Vec<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): <p> A list of information about the network interfaces to add to the decoder manifest. </p>
/// - [`network_interfaces_to_update(Vec<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): <p> A list of information about the network interfaces to update in the decoder manifest. </p>
/// - [`network_interfaces_to_remove(Vec<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): <p> A list of network interfaces to remove from the decoder manifest.</p>
/// - [`status(ManifestStatus)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::status) / [`set_status(Option<ManifestStatus>)`](crate::operation::update_decoder_manifest::builders::UpdateDecoderManifestFluentBuilder::set_status): <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>
/// - On success, responds with [`UpdateDecoderManifestOutput`](crate::operation::update_decoder_manifest::UpdateDecoderManifestOutput) with field(s):
/// - [`name(Option<String>)`](crate::operation::update_decoder_manifest::UpdateDecoderManifestOutput::name): <p> The name of the updated decoder manifest. </p>
/// - [`arn(Option<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(),
)
}
}