// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateDecoderManifest`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`name(impl Into<String>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::set_name): <p> The unique name of the decoder manifest to create.</p>
/// - [`description(impl Into<String>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::set_description): <p> A brief description of the decoder manifest. </p>
/// - [`model_manifest_arn(impl Into<String>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::model_manifest_arn) / [`set_model_manifest_arn(Option<String>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::set_model_manifest_arn): <p> The Amazon Resource Name (ARN) of the vehicle model (model manifest). </p>
/// - [`signal_decoders(SignalDecoder)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::signal_decoders) / [`set_signal_decoders(Option<Vec<SignalDecoder>>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::set_signal_decoders): <p> A list of information about signal decoders. </p>
/// - [`network_interfaces(NetworkInterface)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::network_interfaces) / [`set_network_interfaces(Option<Vec<NetworkInterface>>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::set_network_interfaces): <p> A list of information about available network interfaces. </p>
/// - [`tags(Tag)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::tags) / [`set_tags(Option<Vec<Tag>>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::set_tags): <p>Metadata that can be used to manage the decoder manifest.</p>
/// - On success, responds with [`CreateDecoderManifestOutput`](crate::operation::create_decoder_manifest::CreateDecoderManifestOutput) with field(s):
/// - [`name(Option<String>)`](crate::operation::create_decoder_manifest::CreateDecoderManifestOutput::name): <p> The name of the created decoder manifest. </p>
/// - [`arn(Option<String>)`](crate::operation::create_decoder_manifest::CreateDecoderManifestOutput::arn): <p> The ARN of the created decoder manifest. </p>
/// - On failure, responds with [`SdkError<CreateDecoderManifestError>`](crate::operation::create_decoder_manifest::CreateDecoderManifestError)
pub fn create_decoder_manifest(&self) -> crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder {
crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::new(self.handle.clone())
}
}