aws_sdk_mobile/client/
export_bundle.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`ExportBundle`](crate::operation::export_bundle::builders::ExportBundleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    ///   - [`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>
9    /// - On success, responds with [`ExportBundleOutput`](crate::operation::export_bundle::ExportBundleOutput) with field(s):
10    ///   - [`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>
11    /// - On failure, responds with [`SdkError<ExportBundleError>`](crate::operation::export_bundle::ExportBundleError)
12    pub fn export_bundle(&self) -> crate::operation::export_bundle::builders::ExportBundleFluentBuilder {
13        crate::operation::export_bundle::builders::ExportBundleFluentBuilder::new(self.handle.clone())
14    }
15}