aws-sdk-cloudhsm 0.25.1

AWS SDK for Amazon CloudHSM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListLunaClients`](crate::operation::list_luna_clients::builders::ListLunaClientsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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): <p>The <code>NextToken</code> value from a previous call to <code>ListLunaClients</code>. Pass null if this is the first call.</p>
    /// - On success, responds with [`ListLunaClientsOutput`](crate::operation::list_luna_clients::ListLunaClientsOutput) with field(s):
    ///   - [`client_list(Option<Vec<String>>)`](crate::operation::list_luna_clients::ListLunaClientsOutput::client_list): <p>The list of clients.</p>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<ListLunaClientsError>`](crate::operation::list_luna_clients::ListLunaClientsError)
    pub fn list_luna_clients(
        &self,
    ) -> crate::operation::list_luna_clients::builders::ListLunaClientsFluentBuilder {
        crate::operation::list_luna_clients::builders::ListLunaClientsFluentBuilder::new(
            self.handle.clone(),
        )
    }
}