[][src]Struct rusoto_dataexchange::CreateDataSetRequest

pub struct CreateDataSetRequest {
    pub asset_type: String,
    pub description: String,
    pub name: String,
    pub tags: Option<HashMap<String, String>>,
}

The request body for CreateDataSet.

Fields

asset_type: String

The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.

description: String

A description for the data set. This value can be up to 16,348 characters long.

name: String

The name of the data set.

tags: Option<HashMap<String, String>>

A data set tag is an optional label that you can assign to a data set 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 CreateDataSetRequest[src]

impl Debug for CreateDataSetRequest[src]

impl Default for CreateDataSetRequest[src]

impl PartialEq<CreateDataSetRequest> for CreateDataSetRequest[src]

impl Serialize for CreateDataSetRequest[src]

impl StructuralPartialEq for CreateDataSetRequest[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, 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> Sealed<T> for T where
    T: ?Sized

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.