[][src]Struct rusoto_dataexchange::UpdateRevisionResponse

pub struct UpdateRevisionResponse {
    pub arn: Option<String>,
    pub comment: Option<String>,
    pub created_at: Option<f64>,
    pub data_set_id: Option<String>,
    pub finalized: Option<bool>,
    pub id: Option<String>,
    pub source_id: Option<String>,
    pub updated_at: Option<f64>,
}

Fields

arn: Option<String>

The ARN for the revision.

comment: Option<String>

An optional comment about the revision.

created_at: Option<f64>

The date and time that the revision was created, in ISO 8601 format.

data_set_id: Option<String>

The unique identifier for the data set associated with this revision.

finalized: Option<bool>

To publish a revision to a data set in a product, the revision must first be finalized. Finalizing a revision tells AWS Data Exchange that changes to the assets in the revision are complete. After it's in this read-only state, you can publish the revision to your products.

Finalized revisions can be published through the AWS Data Exchange console or the AWS Marketplace Catalog API, using the StartChangeSet AWS Marketplace Catalog API action. When using the API, revisions are uniquely identified by their ARN.

id: Option<String>

The unique identifier for the revision.

source_id: Option<String>

The revision ID of the owned revision corresponding to the entitled revision being viewed. This parameter is returned when a revision owner is viewing the entitled copy of its owned revision.

updated_at: Option<f64>

The date and time that the revision was last updated, in ISO 8601 format.

Trait Implementations

impl Clone for UpdateRevisionResponse[src]

impl Debug for UpdateRevisionResponse[src]

impl Default for UpdateRevisionResponse[src]

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

impl PartialEq<UpdateRevisionResponse> for UpdateRevisionResponse[src]

impl StructuralPartialEq for UpdateRevisionResponse[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.