[][src]Struct rusoto_quicksight::UpdateDataSetRequest

pub struct UpdateDataSetRequest {
    pub aws_account_id: String,
    pub column_groups: Option<Vec<ColumnGroup>>,
    pub column_level_permission_rules: Option<Vec<ColumnLevelPermissionRule>>,
    pub data_set_id: String,
    pub import_mode: String,
    pub logical_table_map: Option<HashMap<String, LogicalTable>>,
    pub name: String,
    pub physical_table_map: HashMap<String, PhysicalTable>,
    pub row_level_permission_data_set: Option<RowLevelPermissionDataSet>,
}

Fields

aws_account_id: String

The AWS account ID.

column_groups: Option<Vec<ColumnGroup>>

Groupings of columns that work together in certain QuickSight features. Currently, only geospatial hierarchy is supported.

column_level_permission_rules: Option<Vec<ColumnLevelPermissionRule>>

A set of one or more definitions of a ColumnLevelPermissionRule .

data_set_id: String

The ID for the dataset that you want to update. This ID is unique per AWS Region for each AWS account.

import_mode: String

Indicates whether you want to import the data into SPICE.

logical_table_map: Option<HashMap<String, LogicalTable>>

Configures the combination and transformation of the data from the physical tables.

name: String

The display name for the dataset.

physical_table_map: HashMap<String, PhysicalTable>

Declares the physical tables that are available in the underlying data sources.

row_level_permission_data_set: Option<RowLevelPermissionDataSet>

The row-level security configuration for the data you want to create.

Trait Implementations

impl Clone for UpdateDataSetRequest[src]

impl Debug for UpdateDataSetRequest[src]

impl Default for UpdateDataSetRequest[src]

impl PartialEq<UpdateDataSetRequest> for UpdateDataSetRequest[src]

impl Serialize for UpdateDataSetRequest[src]

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