aws_sdk_entityresolution/client/
list_schema_mappings.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 [`ListSchemaMappings`](crate::operation::list_schema_mappings::builders::ListSchemaMappingsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_schema_mappings::builders::ListSchemaMappingsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`next_token(impl Into<String>)`](crate::operation::list_schema_mappings::builders::ListSchemaMappingsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_schema_mappings::builders::ListSchemaMappingsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token from the previous API call.</p><br>
8    ///   - [`max_results(i32)`](crate::operation::list_schema_mappings::builders::ListSchemaMappingsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_schema_mappings::builders::ListSchemaMappingsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of objects returned per page.</p><br>
9    /// - On success, responds with [`ListSchemaMappingsOutput`](crate::operation::list_schema_mappings::ListSchemaMappingsOutput) with field(s):
10    ///   - [`schema_list(Option<Vec::<SchemaMappingSummary>>)`](crate::operation::list_schema_mappings::ListSchemaMappingsOutput::schema_list): <p>A list of <code>SchemaMappingSummary</code> objects, each of which contain the fields <code>SchemaName</code>, <code>SchemaArn</code>, <code>CreatedAt</code>, <code>UpdatedAt</code>.</p>
11    ///   - [`next_token(Option<String>)`](crate::operation::list_schema_mappings::ListSchemaMappingsOutput::next_token): <p>The pagination token from the previous API call.</p>
12    /// - On failure, responds with [`SdkError<ListSchemaMappingsError>`](crate::operation::list_schema_mappings::ListSchemaMappingsError)
13    pub fn list_schema_mappings(&self) -> crate::operation::list_schema_mappings::builders::ListSchemaMappingsFluentBuilder {
14        crate::operation::list_schema_mappings::builders::ListSchemaMappingsFluentBuilder::new(self.handle.clone())
15    }
16}