1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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):<br>required: **true**<br><p>The unique name of the decoder manifest to create.</p><br>
    ///   - [`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):<br>required: **false**<br><p>A brief description of the decoder manifest.</p><br>
    ///   - [`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):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the vehicle model (model manifest).</p><br>
    ///   - [`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):<br>required: **false**<br><p>A list of information about signal decoders.</p><br>
    ///   - [`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):<br>required: **false**<br><p>A list of information about available network interfaces.</p><br>
    ///   - [`tags(Tag)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::tags) / [`set_tags(Option<Vec::<Tag>>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::set_tags):<br>required: **false**<br><p>Metadata that can be used to manage the decoder manifest.</p><br>
    /// - On success, responds with [`CreateDecoderManifestOutput`](crate::operation::create_decoder_manifest::CreateDecoderManifestOutput) with field(s):
    ///   - [`name(String)`](crate::operation::create_decoder_manifest::CreateDecoderManifestOutput::name): <p>The name of the created decoder manifest.</p>
    ///   - [`arn(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())
    }
}