[][src]Struct rusoto_dataexchange::CreateRevisionRequest

pub struct CreateRevisionRequest {
    pub comment: Option<String>,
    pub data_set_id: String,
    pub tags: Option<HashMap<String, String>>,
}

The request body for CreateRevision.

Fields

comment: Option<String>

An optional comment about the revision.

data_set_id: String

The unique identifier for a data set.

tags: Option<HashMap<String, String>>

A revision tag is an optional label that you can assign to a revision when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to these data sets and revisions.

Trait Implementations

impl Clone for CreateRevisionRequest[src]

impl Debug for CreateRevisionRequest[src]

impl Default for CreateRevisionRequest[src]

impl PartialEq<CreateRevisionRequest> for CreateRevisionRequest[src]

impl Serialize for CreateRevisionRequest[src]

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