Struct aws_sdk_quicksight::types::NewDefaultValues
source · #[non_exhaustive]pub struct NewDefaultValues {
pub string_static_values: Option<Vec<String>>,
pub decimal_static_values: Option<Vec<f64>>,
pub date_time_static_values: Option<Vec<DateTime>>,
pub integer_static_values: Option<Vec<i64>>,
}Expand description
The configuration that overrides the existing default values for a dataset parameter that is inherited from another 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.string_static_values: Option<Vec<String>>A list of static default values for a given string parameter.
decimal_static_values: Option<Vec<f64>>A list of static default values for a given decimal parameter.
date_time_static_values: Option<Vec<DateTime>>A list of static default values for a given date time parameter.
integer_static_values: Option<Vec<i64>>A list of static default values for a given integer parameter.
Implementations§
source§impl NewDefaultValues
impl NewDefaultValues
sourcepub fn string_static_values(&self) -> Option<&[String]>
pub fn string_static_values(&self) -> Option<&[String]>
A list of static default values for a given string parameter.
sourcepub fn decimal_static_values(&self) -> Option<&[f64]>
pub fn decimal_static_values(&self) -> Option<&[f64]>
A list of static default values for a given decimal parameter.
sourcepub fn date_time_static_values(&self) -> Option<&[DateTime]>
pub fn date_time_static_values(&self) -> Option<&[DateTime]>
A list of static default values for a given date time parameter.
sourcepub fn integer_static_values(&self) -> Option<&[i64]>
pub fn integer_static_values(&self) -> Option<&[i64]>
A list of static default values for a given integer parameter.
source§impl NewDefaultValues
impl NewDefaultValues
sourcepub fn builder() -> NewDefaultValuesBuilder
pub fn builder() -> NewDefaultValuesBuilder
Creates a new builder-style object to manufacture NewDefaultValues.
Trait Implementations§
source§impl Clone for NewDefaultValues
impl Clone for NewDefaultValues
source§fn clone(&self) -> NewDefaultValues
fn clone(&self) -> NewDefaultValues
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 NewDefaultValues
impl Debug for NewDefaultValues
source§impl PartialEq<NewDefaultValues> for NewDefaultValues
impl PartialEq<NewDefaultValues> for NewDefaultValues
source§fn eq(&self, other: &NewDefaultValues) -> bool
fn eq(&self, other: &NewDefaultValues) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NewDefaultValues
Auto Trait Implementations§
impl RefUnwindSafe for NewDefaultValues
impl Send for NewDefaultValues
impl Sync for NewDefaultValues
impl Unpin for NewDefaultValues
impl UnwindSafe for NewDefaultValues
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