Struct aws_sdk_quicksight::types::DatasetMetadata
source · #[non_exhaustive]pub struct DatasetMetadata {
pub dataset_arn: Option<String>,
pub dataset_name: Option<String>,
pub dataset_description: Option<String>,
pub data_aggregation: Option<DataAggregation>,
pub filters: Option<Vec<TopicFilter>>,
pub columns: Option<Vec<TopicColumn>>,
pub calculated_fields: Option<Vec<TopicCalculatedField>>,
pub named_entities: Option<Vec<TopicNamedEntity>>,
}Expand description
A structure that represents a dataset.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.dataset_arn: Option<String>The Amazon Resource Name (ARN) of the dataset.
dataset_name: Option<String>The name of the dataset.
dataset_description: Option<String>The description of the dataset.
data_aggregation: Option<DataAggregation>The definition of a data aggregation.
filters: Option<Vec<TopicFilter>>The list of filter definitions.
columns: Option<Vec<TopicColumn>>The list of column definitions.
calculated_fields: Option<Vec<TopicCalculatedField>>The list of calculated field definitions.
named_entities: Option<Vec<TopicNamedEntity>>The list of named entities definitions.
Implementations§
source§impl DatasetMetadata
impl DatasetMetadata
sourcepub fn dataset_arn(&self) -> Option<&str>
pub fn dataset_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the dataset.
sourcepub fn dataset_name(&self) -> Option<&str>
pub fn dataset_name(&self) -> Option<&str>
The name of the dataset.
sourcepub fn dataset_description(&self) -> Option<&str>
pub fn dataset_description(&self) -> Option<&str>
The description of the dataset.
sourcepub fn data_aggregation(&self) -> Option<&DataAggregation>
pub fn data_aggregation(&self) -> Option<&DataAggregation>
The definition of a data aggregation.
sourcepub fn filters(&self) -> Option<&[TopicFilter]>
pub fn filters(&self) -> Option<&[TopicFilter]>
The list of filter definitions.
sourcepub fn columns(&self) -> Option<&[TopicColumn]>
pub fn columns(&self) -> Option<&[TopicColumn]>
The list of column definitions.
sourcepub fn calculated_fields(&self) -> Option<&[TopicCalculatedField]>
pub fn calculated_fields(&self) -> Option<&[TopicCalculatedField]>
The list of calculated field definitions.
sourcepub fn named_entities(&self) -> Option<&[TopicNamedEntity]>
pub fn named_entities(&self) -> Option<&[TopicNamedEntity]>
The list of named entities definitions.
source§impl DatasetMetadata
impl DatasetMetadata
sourcepub fn builder() -> DatasetMetadataBuilder
pub fn builder() -> DatasetMetadataBuilder
Creates a new builder-style object to manufacture DatasetMetadata.
Trait Implementations§
source§impl Clone for DatasetMetadata
impl Clone for DatasetMetadata
source§fn clone(&self) -> DatasetMetadata
fn clone(&self) -> DatasetMetadata
Returns a copy 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 DatasetMetadata
impl Debug for DatasetMetadata
source§impl PartialEq<DatasetMetadata> for DatasetMetadata
impl PartialEq<DatasetMetadata> for DatasetMetadata
source§fn eq(&self, other: &DatasetMetadata) -> bool
fn eq(&self, other: &DatasetMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DatasetMetadata
Auto Trait Implementations§
impl RefUnwindSafe for DatasetMetadata
impl Send for DatasetMetadata
impl Sync for DatasetMetadata
impl Unpin for DatasetMetadata
impl UnwindSafe for DatasetMetadata
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