1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListApplicationSnapshots`](crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_name(impl Into<String>)`](crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder::application_name) / [`set_application_name(Option<String>)`](crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder::set_application_name):<br>required: **true**<br><p>The name of an existing application.</p><br>
    ///   - [`limit(i32)`](crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder::limit) / [`set_limit(Option<i32>)`](crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder::set_limit):<br>required: **false**<br><p>The maximum number of application snapshots to list.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder::set_next_token):<br>required: **false**<br><p>Use this parameter if you receive a <code>NextToken</code> response in a previous request that indicates that there is more output available. Set it to the value of the previous call's <code>NextToken</code> response to indicate where the output should continue from.</p><br>
    /// - On success, responds with [`ListApplicationSnapshotsOutput`](crate::operation::list_application_snapshots::ListApplicationSnapshotsOutput) with field(s):
    ///   - [`snapshot_summaries(Option<Vec::<SnapshotDetails>>)`](crate::operation::list_application_snapshots::ListApplicationSnapshotsOutput::snapshot_summaries): <p>A collection of objects containing information about the application snapshots.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_application_snapshots::ListApplicationSnapshotsOutput::next_token): <p>The token for the next set of results, or <code>null</code> if there are no additional results.</p>
    /// - On failure, responds with [`SdkError<ListApplicationSnapshotsError>`](crate::operation::list_application_snapshots::ListApplicationSnapshotsError)
    pub fn list_application_snapshots(&self) -> crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder {
        crate::operation::list_application_snapshots::builders::ListApplicationSnapshotsFluentBuilder::new(self.handle.clone())
    }
}