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 parameter that is created in a dataset. The parameter can be a string, integer, decimal, or datetime data type.
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
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.