Struct aws_sdk_quicksight::types::CustomParameterValues
source · #[non_exhaustive]pub struct CustomParameterValues {
pub string_values: Option<Vec<String>>,
pub integer_values: Option<Vec<i64>>,
pub decimal_values: Option<Vec<f64>>,
pub date_time_values: Option<Vec<DateTime>>,
}Expand description
The customized parameter values.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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_values: Option<Vec<String>>A list of string-type parameter values.
integer_values: Option<Vec<i64>>A list of integer-type parameter values.
decimal_values: Option<Vec<f64>>A list of decimal-type parameter values.
date_time_values: Option<Vec<DateTime>>A list of datetime-type parameter values.
Implementations§
source§impl CustomParameterValues
impl CustomParameterValues
sourcepub fn string_values(&self) -> Option<&[String]>
pub fn string_values(&self) -> Option<&[String]>
A list of string-type parameter values.
sourcepub fn integer_values(&self) -> Option<&[i64]>
pub fn integer_values(&self) -> Option<&[i64]>
A list of integer-type parameter values.
sourcepub fn decimal_values(&self) -> Option<&[f64]>
pub fn decimal_values(&self) -> Option<&[f64]>
A list of decimal-type parameter values.
sourcepub fn date_time_values(&self) -> Option<&[DateTime]>
pub fn date_time_values(&self) -> Option<&[DateTime]>
A list of datetime-type parameter values.
source§impl CustomParameterValues
impl CustomParameterValues
sourcepub fn builder() -> CustomParameterValuesBuilder
pub fn builder() -> CustomParameterValuesBuilder
Creates a new builder-style object to manufacture CustomParameterValues.
Trait Implementations§
source§impl Clone for CustomParameterValues
impl Clone for CustomParameterValues
source§fn clone(&self) -> CustomParameterValues
fn clone(&self) -> CustomParameterValues
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 CustomParameterValues
impl Debug for CustomParameterValues
source§impl PartialEq<CustomParameterValues> for CustomParameterValues
impl PartialEq<CustomParameterValues> for CustomParameterValues
source§fn eq(&self, other: &CustomParameterValues) -> bool
fn eq(&self, other: &CustomParameterValues) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CustomParameterValues
Auto Trait Implementations§
impl RefUnwindSafe for CustomParameterValues
impl Send for CustomParameterValues
impl Sync for CustomParameterValues
impl Unpin for CustomParameterValues
impl UnwindSafe for CustomParameterValues
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