// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListAppVersionAppComponents`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`app_arn(impl Into<String>)`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::app_arn) / [`set_app_arn(Option<String>)`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::set_app_arn):<br>required: **true**<br><p>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html"> Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i> guide.</p><br>
/// - [`app_version(impl Into<String>)`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::app_version) / [`set_app_version(Option<String>)`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::set_app_version):<br>required: **true**<br><p>Version of the Application Component.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::set_next_token):<br>required: **false**<br><p>Null, or the token from a previous call to get the next set of results.</p><br>
/// - [`max_results(i32)`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::set_max_results):<br>required: **false**<br><p>Maximum number of Application Components to be displayed per Resilience Hub application version.</p><br>
/// - On success, responds with [`ListAppVersionAppComponentsOutput`](crate::operation::list_app_version_app_components::ListAppVersionAppComponentsOutput) with field(s):
/// - [`app_arn(String)`](crate::operation::list_app_version_app_components::ListAppVersionAppComponentsOutput::app_arn): <p>Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:<code>partition</code>:resiliencehub:<code>region</code>:<code>account</code>:app/<code>app-id</code>. For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html"> Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i> guide.</p>
/// - [`app_version(String)`](crate::operation::list_app_version_app_components::ListAppVersionAppComponentsOutput::app_version): <p>Resilience Hub application version.</p>
/// - [`app_components(Option<Vec::<AppComponent>>)`](crate::operation::list_app_version_app_components::ListAppVersionAppComponentsOutput::app_components): <p>Defines an Application Component.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_app_version_app_components::ListAppVersionAppComponentsOutput::next_token): <p>Token for the next set of results, or null if there are no more results.</p>
/// - On failure, responds with [`SdkError<ListAppVersionAppComponentsError>`](crate::operation::list_app_version_app_components::ListAppVersionAppComponentsError)
pub fn list_app_version_app_components(
&self,
) -> crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder {
crate::operation::list_app_version_app_components::builders::ListAppVersionAppComponentsFluentBuilder::new(self.handle.clone())
}
}