aws_sdk_amplifyuibuilder/client/export_components.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 [`ExportComponents`](crate::operation::export_components::builders::ExportComponentsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::export_components::builders::ExportComponentsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`app_id(impl Into<String>)`](crate::operation::export_components::builders::ExportComponentsFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::export_components::builders::ExportComponentsFluentBuilder::set_app_id):<br>required: **true**<br><p>The unique ID of the Amplify app to export components to.</p><br>
8 /// - [`environment_name(impl Into<String>)`](crate::operation::export_components::builders::ExportComponentsFluentBuilder::environment_name) / [`set_environment_name(Option<String>)`](crate::operation::export_components::builders::ExportComponentsFluentBuilder::set_environment_name):<br>required: **true**<br><p>The name of the backend environment that is a part of the Amplify app.</p><br>
9 /// - [`next_token(impl Into<String>)`](crate::operation::export_components::builders::ExportComponentsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::export_components::builders::ExportComponentsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to request the next page of results.</p><br>
10 /// - On success, responds with [`ExportComponentsOutput`](crate::operation::export_components::ExportComponentsOutput) with field(s):
11 /// - [`entities(Vec::<Component>)`](crate::operation::export_components::ExportComponentsOutput::entities): <p>Represents the configuration of the exported components.</p>
12 /// - [`next_token(Option<String>)`](crate::operation::export_components::ExportComponentsOutput::next_token): <p>The pagination token that's included if more results are available.</p>
13 /// - On failure, responds with [`SdkError<ExportComponentsError>`](crate::operation::export_components::ExportComponentsError)
14 pub fn export_components(&self) -> crate::operation::export_components::builders::ExportComponentsFluentBuilder {
15 crate::operation::export_components::builders::ExportComponentsFluentBuilder::new(self.handle.clone())
16 }
17}