1
2
3
4
5
6
7
8
9
10
11
12
13
// 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 Into<String>)`](crate::operation::describe_export::builders::DescribeExportFluentBuilder::export_arn) / [`set_export_arn(Option<String>)`](crate::operation::describe_export::builders::DescribeExportFluentBuilder::set_export_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) associated with the export.</p><br>
    /// - 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())
    }
}