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 [`ExportForms`](crate::operation::export_forms::builders::ExportFormsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::export_forms::builders::ExportFormsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_id(impl Into<String>)`](crate::operation::export_forms::builders::ExportFormsFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::export_forms::builders::ExportFormsFluentBuilder::set_app_id):<br>required: **true**<br><p>The unique ID of the Amplify app to export forms to.</p><br>
    ///   - [`environment_name(impl Into<String>)`](crate::operation::export_forms::builders::ExportFormsFluentBuilder::environment_name) / [`set_environment_name(Option<String>)`](crate::operation::export_forms::builders::ExportFormsFluentBuilder::set_environment_name):<br>required: **true**<br><p>The name of the backend environment that is a part of the Amplify app.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::export_forms::builders::ExportFormsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::export_forms::builders::ExportFormsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to request the next page of results.</p><br>
    /// - On success, responds with [`ExportFormsOutput`](crate::operation::export_forms::ExportFormsOutput) with field(s):
    ///   - [`entities(Vec::<Form>)`](crate::operation::export_forms::ExportFormsOutput::entities): <p>Represents the configuration of the exported forms.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::export_forms::ExportFormsOutput::next_token): <p>The pagination token that's included if more results are available.</p>
    /// - On failure, responds with [`SdkError<ExportFormsError>`](crate::operation::export_forms::ExportFormsError)
    pub fn export_forms(&self) -> crate::operation::export_forms::builders::ExportFormsFluentBuilder {
        crate::operation::export_forms::builders::ExportFormsFluentBuilder::new(self.handle.clone())
    }
}