aws_sdk_cloudhsm/client/list_luna_clients.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 [`ListLunaClients`](crate::operation::list_luna_clients::builders::ListLunaClientsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`next_token(impl Into<String>)`](crate::operation::list_luna_clients::builders::ListLunaClientsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_luna_clients::builders::ListLunaClientsFluentBuilder::set_next_token):<br>required: **false**<br><p>The <code>NextToken</code> value from a previous call to <code>ListLunaClients</code>. Pass null if this is the first call.</p><br>
7 /// - On success, responds with [`ListLunaClientsOutput`](crate::operation::list_luna_clients::ListLunaClientsOutput) with field(s):
8 /// - [`client_list(Vec::<String>)`](crate::operation::list_luna_clients::ListLunaClientsOutput::client_list): <p>The list of clients.</p>
9 /// - [`next_token(Option<String>)`](crate::operation::list_luna_clients::ListLunaClientsOutput::next_token): <p>If not null, more results are available. Pass this to <code>ListLunaClients</code> to retrieve the next set of items.</p>
10 /// - On failure, responds with [`SdkError<ListLunaClientsError>`](crate::operation::list_luna_clients::ListLunaClientsError)
11 #[deprecated(note = "This API is deprecated.")]
12 pub fn list_luna_clients(&self) -> crate::operation::list_luna_clients::builders::ListLunaClientsFluentBuilder {
13 crate::operation::list_luna_clients::builders::ListLunaClientsFluentBuilder::new(self.handle.clone())
14 }
15}