1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ExportBundle`](crate::operation::export_bundle::builders::ExportBundleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`bundle_id(impl Into<String>)`](crate::operation::export_bundle::builders::ExportBundleFluentBuilder::bundle_id) / [`set_bundle_id(Option<String>)`](crate::operation::export_bundle::builders::ExportBundleFluentBuilder::set_bundle_id):<br>required: **true**<br><p> Unique bundle identifier. </p><br>
    ///   - [`project_id(impl Into<String>)`](crate::operation::export_bundle::builders::ExportBundleFluentBuilder::project_id) / [`set_project_id(Option<String>)`](crate::operation::export_bundle::builders::ExportBundleFluentBuilder::set_project_id):<br>required: **false**<br><p> Unique project identifier. </p><br>
    ///   - [`platform(Platform)`](crate::operation::export_bundle::builders::ExportBundleFluentBuilder::platform) / [`set_platform(Option<Platform>)`](crate::operation::export_bundle::builders::ExportBundleFluentBuilder::set_platform):<br>required: **false**<br><p> Developer desktop or target application platform. </p><br>
    /// - On success, responds with [`ExportBundleOutput`](crate::operation::export_bundle::ExportBundleOutput) with field(s):
    ///   - [`download_url(Option<String>)`](crate::operation::export_bundle::ExportBundleOutput::download_url): <p> URL which contains the custom-generated SDK and tool packages used to integrate the client mobile app or web app with the AWS resources created by the AWS Mobile Hub project. </p>
    /// - On failure, responds with [`SdkError<ExportBundleError>`](crate::operation::export_bundle::ExportBundleError)
    pub fn export_bundle(&self) -> crate::operation::export_bundle::builders::ExportBundleFluentBuilder {
        crate::operation::export_bundle::builders::ExportBundleFluentBuilder::new(self.handle.clone())
    }
}