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
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) -> &[String]
pub fn string_static_values(&self) -> &[String]
A list of static default values for a given string parameter.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .string_static_values.is_none()
.
sourcepub fn decimal_static_values(&self) -> &[f64]
pub fn decimal_static_values(&self) -> &[f64]
A list of static default values for a given decimal parameter.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .decimal_static_values.is_none()
.
sourcepub fn date_time_static_values(&self) -> &[DateTime]
pub fn date_time_static_values(&self) -> &[DateTime]
A list of static default values for a given date time parameter.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .date_time_static_values.is_none()
.
sourcepub fn integer_static_values(&self) -> &[i64]
pub fn integer_static_values(&self) -> &[i64]
A list of static default values for a given integer parameter.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .integer_static_values.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NewDefaultValues
impl Debug for NewDefaultValues
source§impl PartialEq for NewDefaultValues
impl PartialEq for NewDefaultValues
source§fn eq(&self, other: &NewDefaultValues) -> bool
fn eq(&self, other: &NewDefaultValues) -> bool
self
and other
values to be equal, and is used
by ==
.