Struct aws_sdk_quicksight::types::builders::NewDefaultValuesBuilder
source · #[non_exhaustive]pub struct NewDefaultValuesBuilder { /* private fields */ }Expand description
A builder for NewDefaultValues.
Implementations§
source§impl NewDefaultValuesBuilder
impl NewDefaultValuesBuilder
sourcepub fn string_static_values(self, input: impl Into<String>) -> Self
pub fn string_static_values(self, input: impl Into<String>) -> Self
Appends an item to string_static_values.
To override the contents of this collection use set_string_static_values.
A list of static default values for a given string parameter.
sourcepub fn set_string_static_values(self, input: Option<Vec<String>>) -> Self
pub fn set_string_static_values(self, input: Option<Vec<String>>) -> Self
A list of static default values for a given string parameter.
sourcepub fn get_string_static_values(&self) -> &Option<Vec<String>>
pub fn get_string_static_values(&self) -> &Option<Vec<String>>
A list of static default values for a given string parameter.
sourcepub fn decimal_static_values(self, input: f64) -> Self
pub fn decimal_static_values(self, input: f64) -> Self
Appends an item to decimal_static_values.
To override the contents of this collection use set_decimal_static_values.
A list of static default values for a given decimal parameter.
sourcepub fn set_decimal_static_values(self, input: Option<Vec<f64>>) -> Self
pub fn set_decimal_static_values(self, input: Option<Vec<f64>>) -> Self
A list of static default values for a given decimal parameter.
sourcepub fn get_decimal_static_values(&self) -> &Option<Vec<f64>>
pub fn get_decimal_static_values(&self) -> &Option<Vec<f64>>
A list of static default values for a given decimal parameter.
sourcepub fn date_time_static_values(self, input: DateTime) -> Self
pub fn date_time_static_values(self, input: DateTime) -> Self
Appends an item to date_time_static_values.
To override the contents of this collection use set_date_time_static_values.
A list of static default values for a given date time parameter.
sourcepub fn set_date_time_static_values(self, input: Option<Vec<DateTime>>) -> Self
pub fn set_date_time_static_values(self, input: Option<Vec<DateTime>>) -> Self
A list of static default values for a given date time parameter.
sourcepub fn get_date_time_static_values(&self) -> &Option<Vec<DateTime>>
pub fn get_date_time_static_values(&self) -> &Option<Vec<DateTime>>
A list of static default values for a given date time parameter.
sourcepub fn integer_static_values(self, input: i64) -> Self
pub fn integer_static_values(self, input: i64) -> Self
Appends an item to integer_static_values.
To override the contents of this collection use set_integer_static_values.
A list of static default values for a given integer parameter.
sourcepub fn set_integer_static_values(self, input: Option<Vec<i64>>) -> Self
pub fn set_integer_static_values(self, input: Option<Vec<i64>>) -> Self
A list of static default values for a given integer parameter.
sourcepub fn get_integer_static_values(&self) -> &Option<Vec<i64>>
pub fn get_integer_static_values(&self) -> &Option<Vec<i64>>
A list of static default values for a given integer parameter.
sourcepub fn build(self) -> NewDefaultValues
pub fn build(self) -> NewDefaultValues
Consumes the builder and constructs a NewDefaultValues.
Trait Implementations§
source§impl Clone for NewDefaultValuesBuilder
impl Clone for NewDefaultValuesBuilder
source§fn clone(&self) -> NewDefaultValuesBuilder
fn clone(&self) -> NewDefaultValuesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for NewDefaultValuesBuilder
impl Debug for NewDefaultValuesBuilder
source§impl Default for NewDefaultValuesBuilder
impl Default for NewDefaultValuesBuilder
source§fn default() -> NewDefaultValuesBuilder
fn default() -> NewDefaultValuesBuilder
source§impl PartialEq for NewDefaultValuesBuilder
impl PartialEq for NewDefaultValuesBuilder
source§fn eq(&self, other: &NewDefaultValuesBuilder) -> bool
fn eq(&self, other: &NewDefaultValuesBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NewDefaultValuesBuilder
Auto Trait Implementations§
impl Freeze for NewDefaultValuesBuilder
impl RefUnwindSafe for NewDefaultValuesBuilder
impl Send for NewDefaultValuesBuilder
impl Sync for NewDefaultValuesBuilder
impl Unpin for NewDefaultValuesBuilder
impl UnwindSafe for NewDefaultValuesBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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