Struct aws_sdk_quicksight::types::DatasetParameter
source · #[non_exhaustive]pub struct DatasetParameter {
pub string_dataset_parameter: Option<StringDatasetParameter>,
pub decimal_dataset_parameter: Option<DecimalDatasetParameter>,
pub integer_dataset_parameter: Option<IntegerDatasetParameter>,
pub date_time_dataset_parameter: Option<DateTimeDatasetParameter>,
}
Expand description
A dataset parameter.
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.string_dataset_parameter: Option<StringDatasetParameter>
A string parameter that is created in the dataset.
decimal_dataset_parameter: Option<DecimalDatasetParameter>
A decimal parameter that is created in the dataset.
integer_dataset_parameter: Option<IntegerDatasetParameter>
An integer parameter that is created in the dataset.
date_time_dataset_parameter: Option<DateTimeDatasetParameter>
A date time parameter that is created in the dataset.
Implementations§
source§impl DatasetParameter
impl DatasetParameter
sourcepub fn string_dataset_parameter(&self) -> Option<&StringDatasetParameter>
pub fn string_dataset_parameter(&self) -> Option<&StringDatasetParameter>
A string parameter that is created in the dataset.
sourcepub fn decimal_dataset_parameter(&self) -> Option<&DecimalDatasetParameter>
pub fn decimal_dataset_parameter(&self) -> Option<&DecimalDatasetParameter>
A decimal parameter that is created in the dataset.
sourcepub fn integer_dataset_parameter(&self) -> Option<&IntegerDatasetParameter>
pub fn integer_dataset_parameter(&self) -> Option<&IntegerDatasetParameter>
An integer parameter that is created in the dataset.
sourcepub fn date_time_dataset_parameter(&self) -> Option<&DateTimeDatasetParameter>
pub fn date_time_dataset_parameter(&self) -> Option<&DateTimeDatasetParameter>
A date time parameter that is created in the dataset.
source§impl DatasetParameter
impl DatasetParameter
sourcepub fn builder() -> DatasetParameterBuilder
pub fn builder() -> DatasetParameterBuilder
Creates a new builder-style object to manufacture DatasetParameter
.
Trait Implementations§
source§impl Clone for DatasetParameter
impl Clone for DatasetParameter
source§fn clone(&self) -> DatasetParameter
fn clone(&self) -> DatasetParameter
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 DatasetParameter
impl Debug for DatasetParameter
source§impl PartialEq for DatasetParameter
impl PartialEq for DatasetParameter
source§fn eq(&self, other: &DatasetParameter) -> bool
fn eq(&self, other: &DatasetParameter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DatasetParameter
Auto Trait Implementations§
impl Freeze for DatasetParameter
impl RefUnwindSafe for DatasetParameter
impl Send for DatasetParameter
impl Sync for DatasetParameter
impl Unpin for DatasetParameter
impl UnwindSafe for DatasetParameter
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.