aws_sdk_iotfleetwise/client/create_decoder_manifest.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`CreateDecoderManifest`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - [`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>
10 /// - [`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>
11 /// - [`default_for_unmapped_signals(DefaultForUnmappedSignalsType)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::default_for_unmapped_signals) / [`set_default_for_unmapped_signals(Option<DefaultForUnmappedSignalsType>)`](crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::set_default_for_unmapped_signals):<br>required: **false**<br><p>Use default decoders for all unmapped signals in the model. You don't need to provide any detailed decoding information.</p><important> <p>Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">Amazon Web Services Region and feature availability</a> in the <i>Amazon Web Services IoT FleetWise Developer Guide</i>.</p> </important><br>
12 /// - [`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>
13 /// - On success, responds with [`CreateDecoderManifestOutput`](crate::operation::create_decoder_manifest::CreateDecoderManifestOutput) with field(s):
14 /// - [`name(String)`](crate::operation::create_decoder_manifest::CreateDecoderManifestOutput::name): <p>The name of the created decoder manifest.</p>
15 /// - [`arn(String)`](crate::operation::create_decoder_manifest::CreateDecoderManifestOutput::arn): <p>The ARN of the created decoder manifest.</p>
16 /// - On failure, responds with [`SdkError<CreateDecoderManifestError>`](crate::operation::create_decoder_manifest::CreateDecoderManifestError)
17 pub fn create_decoder_manifest(&self) -> crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder {
18 crate::operation::create_decoder_manifest::builders::CreateDecoderManifestFluentBuilder::new(self.handle.clone())
19 }
20}