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 [`DescribeApplicationSnapshot`](crate::operation::describe_application_snapshot::builders::DescribeApplicationSnapshotFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_name(impl Into<String>)`](crate::operation::describe_application_snapshot::builders::DescribeApplicationSnapshotFluentBuilder::application_name) / [`set_application_name(Option<String>)`](crate::operation::describe_application_snapshot::builders::DescribeApplicationSnapshotFluentBuilder::set_application_name):<br>required: **true**<br><p>The name of an existing application.</p><br>
    ///   - [`snapshot_name(impl Into<String>)`](crate::operation::describe_application_snapshot::builders::DescribeApplicationSnapshotFluentBuilder::snapshot_name) / [`set_snapshot_name(Option<String>)`](crate::operation::describe_application_snapshot::builders::DescribeApplicationSnapshotFluentBuilder::set_snapshot_name):<br>required: **true**<br><p>The identifier of an application snapshot. You can retrieve this value using .</p><br>
    /// - On success, responds with [`DescribeApplicationSnapshotOutput`](crate::operation::describe_application_snapshot::DescribeApplicationSnapshotOutput) with field(s):
    ///   - [`snapshot_details(Option<SnapshotDetails>)`](crate::operation::describe_application_snapshot::DescribeApplicationSnapshotOutput::snapshot_details): <p>An object containing information about the application snapshot.</p>
    /// - On failure, responds with [`SdkError<DescribeApplicationSnapshotError>`](crate::operation::describe_application_snapshot::DescribeApplicationSnapshotError)
    pub fn describe_application_snapshot(
        &self,
    ) -> crate::operation::describe_application_snapshot::builders::DescribeApplicationSnapshotFluentBuilder {
        crate::operation::describe_application_snapshot::builders::DescribeApplicationSnapshotFluentBuilder::new(self.handle.clone())
    }
}