pub struct DataSet {
pub arn: Option<String>,
pub column_groups: Option<Vec<ColumnGroup>>,
pub consumed_spice_capacity_in_bytes: Option<i64>,
pub created_time: Option<f64>,
pub data_set_id: Option<String>,
pub import_mode: Option<String>,
pub last_updated_time: Option<f64>,
pub logical_table_map: Option<HashMap<String, LogicalTable>>,
pub name: Option<String>,
pub output_columns: Option<Vec<OutputColumn>>,
pub physical_table_map: Option<HashMap<String, PhysicalTable>>,
pub row_level_permission_data_set: Option<RowLevelPermissionDataSet>,
}
Expand description
Dataset.
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the resource.
column_groups: Option<Vec<ColumnGroup>>
Groupings of columns that work together in certain Amazon QuickSight features. Currently, only geospatial hierarchy is supported.
consumed_spice_capacity_in_bytes: Option<i64>
The amount of SPICE capacity used by this dataset. This is 0 if the dataset isn't imported into SPICE.
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>
Indicates whether you want to import the data into SPICE.
last_updated_time: Option<f64>
The last time that this dataset was updated.
logical_table_map: Option<HashMap<String, LogicalTable>>
Configures the combination and transformation of the data from the physical tables.
name: Option<String>
A display name for the dataset.
output_columns: Option<Vec<OutputColumn>>
The list of columns after all transforms. These columns are available in templates, analyses, and dashboards.
physical_table_map: Option<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 dataset.