Struct aws_sdk_quicksight::model::custom_parameter_values::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CustomParameterValues
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn string_values(self, input: impl Into<String>) -> Self
pub fn string_values(self, input: impl Into<String>) -> Self
Appends an item to string_values
.
To override the contents of this collection use set_string_values
.
A list of string-type parameter values.
sourcepub fn set_string_values(self, input: Option<Vec<String>>) -> Self
pub fn set_string_values(self, input: Option<Vec<String>>) -> Self
A list of string-type parameter values.
sourcepub fn integer_values(self, input: i64) -> Self
pub fn integer_values(self, input: i64) -> Self
Appends an item to integer_values
.
To override the contents of this collection use set_integer_values
.
A list of integer-type parameter values.
sourcepub fn set_integer_values(self, input: Option<Vec<i64>>) -> Self
pub fn set_integer_values(self, input: Option<Vec<i64>>) -> Self
A list of integer-type parameter values.
sourcepub fn decimal_values(self, input: f64) -> Self
pub fn decimal_values(self, input: f64) -> Self
Appends an item to decimal_values
.
To override the contents of this collection use set_decimal_values
.
A list of decimal-type parameter values.
sourcepub fn set_decimal_values(self, input: Option<Vec<f64>>) -> Self
pub fn set_decimal_values(self, input: Option<Vec<f64>>) -> Self
A list of decimal-type parameter values.
sourcepub fn date_time_values(self, input: DateTime) -> Self
pub fn date_time_values(self, input: DateTime) -> Self
Appends an item to date_time_values
.
To override the contents of this collection use set_date_time_values
.
A list of datetime-type parameter values.
sourcepub fn set_date_time_values(self, input: Option<Vec<DateTime>>) -> Self
pub fn set_date_time_values(self, input: Option<Vec<DateTime>>) -> Self
A list of datetime-type parameter values.
sourcepub fn build(self) -> CustomParameterValues
pub fn build(self) -> CustomParameterValues
Consumes the builder and constructs a CustomParameterValues
.