Struct aws_sdk_quicksight::model::CustomParameterValues
source · #[non_exhaustive]pub struct CustomParameterValues { /* private fields */ }
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.
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() -> Builder
pub fn builder() -> Builder
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 ==
.