pub struct ExportProjectResult {
pub download_url: Option<String>,
pub share_url: Option<String>,
pub snapshot_id: Option<String>,
}
Expand description
Result structure used for requests to export project configuration details.
Fields§
§download_url: Option<String>
URL which can be used to download the exported project configuation file(s).
URL which can be shared to allow other AWS users to create their own project in AWS Mobile Hub with the same configuration as the specified project. This URL pertains to a snapshot in time of the project configuration that is created when this API is called. If you want to share additional changes to your project configuration, then you will need to create and share a new snapshot by calling this method again.
snapshot_id: Option<String>
Unique identifier for the exported snapshot of the project configuration. This snapshot identifier is included in the share URL.
Trait Implementations§
Source§impl Clone for ExportProjectResult
impl Clone for ExportProjectResult
Source§fn clone(&self) -> ExportProjectResult
fn clone(&self) -> ExportProjectResult
Returns a duplicate 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 ExportProjectResult
impl Debug for ExportProjectResult
Source§impl Default for ExportProjectResult
impl Default for ExportProjectResult
Source§fn default() -> ExportProjectResult
fn default() -> ExportProjectResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportProjectResult
impl<'de> Deserialize<'de> for ExportProjectResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExportProjectResult
impl PartialEq for ExportProjectResult
impl StructuralPartialEq for ExportProjectResult
Auto Trait Implementations§
impl Freeze for ExportProjectResult
impl RefUnwindSafe for ExportProjectResult
impl Send for ExportProjectResult
impl Sync for ExportProjectResult
impl Unpin for ExportProjectResult
impl UnwindSafe for ExportProjectResult
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