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
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) -> &[String]
pub fn string_values(&self) -> &[String]
A list of string-type parameter values.
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_values.is_none()
.
sourcepub fn integer_values(&self) -> &[i64]
pub fn integer_values(&self) -> &[i64]
A list of integer-type parameter values.
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_values.is_none()
.
sourcepub fn decimal_values(&self) -> &[f64]
pub fn decimal_values(&self) -> &[f64]
A list of decimal-type parameter values.
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_values.is_none()
.
sourcepub fn date_time_values(&self) -> &[DateTime]
pub fn date_time_values(&self) -> &[DateTime]
A list of datetime-type parameter values.
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_values.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CustomParameterValues
impl Debug for CustomParameterValues
source§impl PartialEq for CustomParameterValues
impl PartialEq for CustomParameterValues
impl StructuralPartialEq for CustomParameterValues
Auto Trait Implementations§
impl Freeze for CustomParameterValues
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
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)
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>
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>
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 more