aws_sdk_cleanroomsml/client/
list_ml_input_channels.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 [`ListMLInputChannels`](crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`next_token(impl Into<String>)`](crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token value retrieved from a previous call to access the next page of results.</p><br>
8    ///   - [`max_results(i32)`](crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of ML input channels to return.</p><br>
9    ///   - [`membership_identifier(impl Into<String>)`](crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The membership ID of the membership that contains the ML input channels that you want to list.</p><br>
10    /// - On success, responds with [`ListMlInputChannelsOutput`](crate::operation::list_ml_input_channels::ListMlInputChannelsOutput) with field(s):
11    ///   - [`next_token(Option<String>)`](crate::operation::list_ml_input_channels::ListMlInputChannelsOutput::next_token): <p>The token value used to access the next page of results.</p>
12    ///   - [`ml_input_channels_list(Vec::<MlInputChannelSummary>)`](crate::operation::list_ml_input_channels::ListMlInputChannelsOutput::ml_input_channels_list): <p>The list of ML input channels that you wanted.</p>
13    /// - On failure, responds with [`SdkError<ListMLInputChannelsError>`](crate::operation::list_ml_input_channels::ListMLInputChannelsError)
14    pub fn list_ml_input_channels(&self) -> crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder {
15        crate::operation::list_ml_input_channels::builders::ListMLInputChannelsFluentBuilder::new(self.handle.clone())
16    }
17}