#[non_exhaustive]pub struct DestinationParameterValueConfigurationBuilder { /* private fields */ }Expand description
A builder for DestinationParameterValueConfiguration.
Implementations§
source§impl DestinationParameterValueConfigurationBuilder
impl DestinationParameterValueConfigurationBuilder
sourcepub fn custom_values_configuration(
self,
input: CustomValuesConfiguration
) -> Self
pub fn custom_values_configuration( self, input: CustomValuesConfiguration ) -> Self
The configuration of custom values for destination parameter in DestinationParameterValueConfiguration.
sourcepub fn set_custom_values_configuration(
self,
input: Option<CustomValuesConfiguration>
) -> Self
pub fn set_custom_values_configuration( self, input: Option<CustomValuesConfiguration> ) -> Self
The configuration of custom values for destination parameter in DestinationParameterValueConfiguration.
sourcepub fn select_all_value_options(self, input: SelectAllValueOptions) -> Self
pub fn select_all_value_options(self, input: SelectAllValueOptions) -> Self
The configuration that selects all options.
sourcepub fn set_select_all_value_options(
self,
input: Option<SelectAllValueOptions>
) -> Self
pub fn set_select_all_value_options( self, input: Option<SelectAllValueOptions> ) -> Self
The configuration that selects all options.
sourcepub fn source_parameter_name(self, input: impl Into<String>) -> Self
pub fn source_parameter_name(self, input: impl Into<String>) -> Self
The source parameter name of the destination parameter.
sourcepub fn set_source_parameter_name(self, input: Option<String>) -> Self
pub fn set_source_parameter_name(self, input: Option<String>) -> Self
The source parameter name of the destination parameter.
sourcepub fn source_field(self, input: impl Into<String>) -> Self
pub fn source_field(self, input: impl Into<String>) -> Self
The source field ID of the destination parameter.
sourcepub fn set_source_field(self, input: Option<String>) -> Self
pub fn set_source_field(self, input: Option<String>) -> Self
The source field ID of the destination parameter.
sourcepub fn build(self) -> DestinationParameterValueConfiguration
pub fn build(self) -> DestinationParameterValueConfiguration
Consumes the builder and constructs a DestinationParameterValueConfiguration.
Trait Implementations§
source§impl Clone for DestinationParameterValueConfigurationBuilder
impl Clone for DestinationParameterValueConfigurationBuilder
source§fn clone(&self) -> DestinationParameterValueConfigurationBuilder
fn clone(&self) -> DestinationParameterValueConfigurationBuilder
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 Default for DestinationParameterValueConfigurationBuilder
impl Default for DestinationParameterValueConfigurationBuilder
source§fn default() -> DestinationParameterValueConfigurationBuilder
fn default() -> DestinationParameterValueConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DestinationParameterValueConfigurationBuilder> for DestinationParameterValueConfigurationBuilder
impl PartialEq<DestinationParameterValueConfigurationBuilder> for DestinationParameterValueConfigurationBuilder
source§fn eq(&self, other: &DestinationParameterValueConfigurationBuilder) -> bool
fn eq(&self, other: &DestinationParameterValueConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DestinationParameterValueConfigurationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DestinationParameterValueConfigurationBuilder
impl Send for DestinationParameterValueConfigurationBuilder
impl Sync for DestinationParameterValueConfigurationBuilder
impl Unpin for DestinationParameterValueConfigurationBuilder
impl UnwindSafe for DestinationParameterValueConfigurationBuilder
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
Mutably borrows from an owned value. Read more