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 [`DescribeExport`](crate::operation::describe_export::builders::DescribeExportFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`export_arn(impl ::std::convert::Into<String>)`](crate::operation::describe_export::builders::DescribeExportFluentBuilder::export_arn) / [`set_export_arn(Option<String>)`](crate::operation::describe_export::builders::DescribeExportFluentBuilder::set_export_arn): <p>The Amazon Resource Name (ARN) associated with the export.</p>
    /// - On success, responds with [`DescribeExportOutput`](crate::operation::describe_export::DescribeExportOutput) with field(s):
    ///   - [`export_description(Option<ExportDescription>)`](crate::operation::describe_export::DescribeExportOutput::export_description): <p>Represents the properties of the export.</p>
    /// - On failure, responds with [`SdkError<DescribeExportError>`](crate::operation::describe_export::DescribeExportError)
    pub fn describe_export(
        &self,
    ) -> crate::operation::describe_export::builders::DescribeExportFluentBuilder {
        crate::operation::describe_export::builders::DescribeExportFluentBuilder::new(
            self.handle.clone(),
        )
    }
}