aws_sdk_connectcases/client/
list_fields.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListFields`](crate::operation::list_fields::builders::ListFieldsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_fields::builders::ListFieldsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_id(impl Into<String>)`](crate::operation::list_fields::builders::ListFieldsFluentBuilder::domain_id) / [`set_domain_id(Option<String>)`](crate::operation::list_fields::builders::ListFieldsFluentBuilder::set_domain_id):<br>required: **true**<br><p>The unique identifier of the Cases domain.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_fields::builders::ListFieldsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_fields::builders::ListFieldsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per page.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_fields::builders::ListFieldsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_fields::builders::ListFieldsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.</p><br>
    /// - On success, responds with [`ListFieldsOutput`](crate::operation::list_fields::ListFieldsOutput) with field(s):
    ///   - [`fields(Vec::<FieldSummary>)`](crate::operation::list_fields::ListFieldsOutput::fields): <p>List of detailed field information.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_fields::ListFieldsOutput::next_token): <p>The token for the next set of results. This is null if there are no more results to return.</p>
    /// - On failure, responds with [`SdkError<ListFieldsError>`](crate::operation::list_fields::ListFieldsError)
    pub fn list_fields(&self) -> crate::operation::list_fields::builders::ListFieldsFluentBuilder {
        crate::operation::list_fields::builders::ListFieldsFluentBuilder::new(self.handle.clone())
    }
}