aws_sdk_iotfleetwise/client/list_decoder_manifest_signals.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 [`ListDecoderManifestSignals`](crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`name(impl Into<String>)`](crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder::set_name):<br>required: **true**<br><p>The name of the decoder manifest to list information about.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder::set_next_token):<br>required: **false**<br><p>A pagination token for the next set of results.</p> <p>If the results of a search are large, only a portion of the results are returned, and a <code>nextToken</code> pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.</p><br>
9 /// - [`max_results(i32)`](crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of items to return, between 1 and 100, inclusive.</p><br>
10 /// - On success, responds with [`ListDecoderManifestSignalsOutput`](crate::operation::list_decoder_manifest_signals::ListDecoderManifestSignalsOutput) with field(s):
11 /// - [`signal_decoders(Option<Vec::<SignalDecoder>>)`](crate::operation::list_decoder_manifest_signals::ListDecoderManifestSignalsOutput::signal_decoders): <p>Information about a list of signals to decode.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::list_decoder_manifest_signals::ListDecoderManifestSignalsOutput::next_token): <p>The token to retrieve the next set of results, or <code>null</code> if there are no more results.</p>
13 /// - On failure, responds with [`SdkError<ListDecoderManifestSignalsError>`](crate::operation::list_decoder_manifest_signals::ListDecoderManifestSignalsError)
14 pub fn list_decoder_manifest_signals(
15 &self,
16 ) -> crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder {
17 crate::operation::list_decoder_manifest_signals::builders::ListDecoderManifestSignalsFluentBuilder::new(self.handle.clone())
18 }
19}