[][src]Struct rusoto_iotthingsgraph::GetUploadStatusResponse

pub struct GetUploadStatusResponse {
    pub created_date: f64,
    pub failure_reason: Option<Vec<String>>,
    pub namespace_arn: Option<String>,
    pub namespace_name: Option<String>,
    pub namespace_version: Option<i64>,
    pub upload_id: String,
    pub upload_status: String,
}

Fields

created_date: f64

The date at which the upload was created.

failure_reason: Option<Vec<String>>

The reason for an upload failure.

namespace_arn: Option<String>

The ARN of the upload.

namespace_name: Option<String>

The name of the upload's namespace.

namespace_version: Option<i64>

The version of the user's namespace. Defaults to the latest version of the user's namespace.

upload_id: String

The ID of the upload.

upload_status: String

The status of the upload. The initial status is IN_PROGRESS. The response show all validation failures if the upload fails.

Trait Implementations

impl Clone for GetUploadStatusResponse[src]

impl Debug for GetUploadStatusResponse[src]

impl Default for GetUploadStatusResponse[src]

impl<'de> Deserialize<'de> for GetUploadStatusResponse[src]

impl PartialEq<GetUploadStatusResponse> for GetUploadStatusResponse[src]

impl StructuralPartialEq for GetUploadStatusResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.