[][src]Struct rusoto_dataexchange::RevisionEntry

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

A revision is a container for one or more assets.

Fields

arn: String

The ARN for the revision.

comment: Option<String>

An optional comment about the revision.

created_at: f64

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

data_set_id: 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 your 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: 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: f64

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

Trait Implementations

impl Clone for RevisionEntry[src]

impl Debug for RevisionEntry[src]

impl Default for RevisionEntry[src]

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

impl PartialEq<RevisionEntry> for RevisionEntry[src]

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