pub struct CreateDataSetRequest {
pub aws_account_id: String,
pub column_groups: Option<Vec<ColumnGroup>>,
pub data_set_id: String,
pub import_mode: String,
pub logical_table_map: Option<HashMap<String, LogicalTable>>,
pub name: String,
pub permissions: Option<Vec<ResourcePermission>>,
pub physical_table_map: HashMap<String, PhysicalTable>,
pub row_level_permission_data_set: Option<RowLevelPermissionDataSet>,
pub tags: Option<Vec<Tag>>,
}
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.
data_set_id: String
An ID for the dataset that you want to create. 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.
permissions: Option<Vec<ResourcePermission>>
A list of resource permissions on 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 that you want to create.
Contains a map of the key-value pairs for the resource tag or tags assigned to the dataset.
Trait Implementations§
Source§impl Clone for CreateDataSetRequest
impl Clone for CreateDataSetRequest
Source§fn clone(&self) -> CreateDataSetRequest
fn clone(&self) -> CreateDataSetRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateDataSetRequest
impl Debug for CreateDataSetRequest
Source§impl Default for CreateDataSetRequest
impl Default for CreateDataSetRequest
Source§fn default() -> CreateDataSetRequest
fn default() -> CreateDataSetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateDataSetRequest
impl PartialEq for CreateDataSetRequest
Source§impl Serialize for CreateDataSetRequest
impl Serialize for CreateDataSetRequest
impl StructuralPartialEq for CreateDataSetRequest
Auto Trait Implementations§
impl Freeze for CreateDataSetRequest
impl RefUnwindSafe for CreateDataSetRequest
impl Send for CreateDataSetRequest
impl Sync for CreateDataSetRequest
impl Unpin for CreateDataSetRequest
impl UnwindSafe for CreateDataSetRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more