#[non_exhaustive]pub struct AssetBundleImportSourceDescription {
pub body: Option<String>,
pub s3_uri: Option<String>,
}Expand description
A description of the import source that you provide at the start of an import job. This value is set to either Body or S3Uri, depending on how the StartAssetBundleImportJobRequest is configured.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.body: Option<String>An HTTPS download URL for the provided asset bundle that you optionally provided at the start of the import job. This URL is valid for five minutes after issuance. Call DescribeAssetBundleExportJob again for a fresh URL if needed. The downloaded asset bundle is a .qs zip file.
s3_uri: Option<String>The Amazon S3 URI that you provided at the start of the import job.
Implementations§
source§impl AssetBundleImportSourceDescription
impl AssetBundleImportSourceDescription
sourcepub fn body(&self) -> Option<&str>
pub fn body(&self) -> Option<&str>
An HTTPS download URL for the provided asset bundle that you optionally provided at the start of the import job. This URL is valid for five minutes after issuance. Call DescribeAssetBundleExportJob again for a fresh URL if needed. The downloaded asset bundle is a .qs zip file.
source§impl AssetBundleImportSourceDescription
impl AssetBundleImportSourceDescription
sourcepub fn builder() -> AssetBundleImportSourceDescriptionBuilder
pub fn builder() -> AssetBundleImportSourceDescriptionBuilder
Creates a new builder-style object to manufacture AssetBundleImportSourceDescription.
Trait Implementations§
source§impl Clone for AssetBundleImportSourceDescription
impl Clone for AssetBundleImportSourceDescription
source§fn clone(&self) -> AssetBundleImportSourceDescription
fn clone(&self) -> AssetBundleImportSourceDescription
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for AssetBundleImportSourceDescription
impl PartialEq for AssetBundleImportSourceDescription
source§fn eq(&self, other: &AssetBundleImportSourceDescription) -> bool
fn eq(&self, other: &AssetBundleImportSourceDescription) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssetBundleImportSourceDescription
Auto Trait Implementations§
impl Freeze for AssetBundleImportSourceDescription
impl RefUnwindSafe for AssetBundleImportSourceDescription
impl Send for AssetBundleImportSourceDescription
impl Sync for AssetBundleImportSourceDescription
impl Unpin for AssetBundleImportSourceDescription
impl UnwindSafe for AssetBundleImportSourceDescription
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more