#[non_exhaustive]pub struct GetUploadStatusOutput { /* private fields */ }Implementations§
source§impl GetUploadStatusOutput
impl GetUploadStatusOutput
sourcepub fn upload_status(&self) -> Option<&UploadStatus>
pub fn upload_status(&self) -> Option<&UploadStatus>
The status of the upload. The initial status is IN_PROGRESS. The response show all validation failures if the upload fails.
sourcepub fn namespace_arn(&self) -> Option<&str>
pub fn namespace_arn(&self) -> Option<&str>
The ARN of the upload.
sourcepub fn namespace_name(&self) -> Option<&str>
pub fn namespace_name(&self) -> Option<&str>
The name of the upload's namespace.
sourcepub fn namespace_version(&self) -> Option<i64>
pub fn namespace_version(&self) -> Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
sourcepub fn failure_reason(&self) -> Option<&[String]>
pub fn failure_reason(&self) -> Option<&[String]>
The reason for an upload failure.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The date at which the upload was created.
source§impl GetUploadStatusOutput
impl GetUploadStatusOutput
sourcepub fn builder() -> GetUploadStatusOutputBuilder
pub fn builder() -> GetUploadStatusOutputBuilder
Creates a new builder-style object to manufacture GetUploadStatusOutput.
Trait Implementations§
source§impl Clone for GetUploadStatusOutput
impl Clone for GetUploadStatusOutput
source§fn clone(&self) -> GetUploadStatusOutput
fn clone(&self) -> GetUploadStatusOutput
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 GetUploadStatusOutput
impl Debug for GetUploadStatusOutput
source§impl PartialEq<GetUploadStatusOutput> for GetUploadStatusOutput
impl PartialEq<GetUploadStatusOutput> for GetUploadStatusOutput
source§fn eq(&self, other: &GetUploadStatusOutput) -> bool
fn eq(&self, other: &GetUploadStatusOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetUploadStatusOutput
impl RequestId for GetUploadStatusOutput
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 GetUploadStatusOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetUploadStatusOutput
impl Send for GetUploadStatusOutput
impl Sync for GetUploadStatusOutput
impl Unpin for GetUploadStatusOutput
impl UnwindSafe for GetUploadStatusOutput
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