pub struct Builder { /* private fields */ }
Expand description
A builder for CustomValuesConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn include_null_value(self, input: bool) -> Self
pub fn include_null_value(self, input: bool) -> Self
Includes the null value in custom action parameter values.
sourcepub fn set_include_null_value(self, input: Option<bool>) -> Self
pub fn set_include_null_value(self, input: Option<bool>) -> Self
Includes the null value in custom action parameter values.
sourcepub fn custom_values(self, input: CustomParameterValues) -> Self
pub fn custom_values(self, input: CustomParameterValues) -> Self
The customized parameter values.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
sourcepub fn set_custom_values(self, input: Option<CustomParameterValues>) -> Self
pub fn set_custom_values(self, input: Option<CustomParameterValues>) -> Self
The customized parameter values.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
sourcepub fn build(self) -> CustomValuesConfiguration
pub fn build(self) -> CustomValuesConfiguration
Consumes the builder and constructs a CustomValuesConfiguration
.