[][src]Struct rusoto_quicksight::DataSetSummary

pub struct DataSetSummary {
    pub arn: Option<String>,
    pub column_level_permission_rules_applied: Option<bool>,
    pub created_time: Option<f64>,
    pub data_set_id: Option<String>,
    pub import_mode: Option<String>,
    pub last_updated_time: Option<f64>,
    pub name: Option<String>,
    pub row_level_permission_data_set: Option<RowLevelPermissionDataSet>,
}

Dataset summary.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the dataset.

column_level_permission_rules_applied: Option<bool>

A value that indicates if the dataset has column level permission configured.

created_time: Option<f64>

The time that this dataset was created.

data_set_id: Option<String>

The ID of the dataset.

import_mode: Option<String>

A value that indicates whether you want to import the data into SPICE.

last_updated_time: Option<f64>

The last time that this dataset was updated.

name: Option<String>

A display name for the dataset.

row_level_permission_data_set: Option<RowLevelPermissionDataSet>

The row-level security configuration for the dataset.

Trait Implementations

impl Clone for DataSetSummary[src]

impl Debug for DataSetSummary[src]

impl Default for DataSetSummary[src]

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

impl PartialEq<DataSetSummary> for DataSetSummary[src]

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