Struct aws_sdk_mobile::operation::export_bundle::ExportBundleOutput
source · #[non_exhaustive]pub struct ExportBundleOutput {
pub download_url: Option<String>,
/* private fields */
}
Expand description
Result structure which contains link to download custom-generated SDK and tool packages used to integrate mobile web or app clients with backed AWS resources.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.download_url: Option<String>
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.
Implementations§
source§impl ExportBundleOutput
impl ExportBundleOutput
sourcepub fn download_url(&self) -> Option<&str>
pub fn download_url(&self) -> Option<&str>
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.
source§impl ExportBundleOutput
impl ExportBundleOutput
sourcepub fn builder() -> ExportBundleOutputBuilder
pub fn builder() -> ExportBundleOutputBuilder
Creates a new builder-style object to manufacture ExportBundleOutput
.
Trait Implementations§
source§impl Clone for ExportBundleOutput
impl Clone for ExportBundleOutput
source§fn clone(&self) -> ExportBundleOutput
fn clone(&self) -> ExportBundleOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExportBundleOutput
impl Debug for ExportBundleOutput
source§impl PartialEq for ExportBundleOutput
impl PartialEq for ExportBundleOutput
source§fn eq(&self, other: &ExportBundleOutput) -> bool
fn eq(&self, other: &ExportBundleOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ExportBundleOutput
impl RequestId for ExportBundleOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for ExportBundleOutput
Auto Trait Implementations§
impl RefUnwindSafe for ExportBundleOutput
impl Send for ExportBundleOutput
impl Sync for ExportBundleOutput
impl Unpin for ExportBundleOutput
impl UnwindSafe for ExportBundleOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.