#[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 get_custom_values_configuration(
&self,
) -> &Option<CustomValuesConfiguration>
pub fn get_custom_values_configuration( &self, ) -> &Option<CustomValuesConfiguration>
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 get_select_all_value_options(&self) -> &Option<SelectAllValueOptions>
pub fn get_select_all_value_options(&self) -> &Option<SelectAllValueOptions>
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 get_source_parameter_name(&self) -> &Option<String>
pub fn get_source_parameter_name(&self) -> &Option<String>
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 get_source_field(&self) -> &Option<String>
pub fn get_source_field(&self) -> &Option<String>
The source field ID of the destination parameter.
sourcepub fn source_column(self, input: ColumnIdentifier) -> Self
pub fn source_column(self, input: ColumnIdentifier) -> Self
A column of a data set.
sourcepub fn set_source_column(self, input: Option<ColumnIdentifier>) -> Self
pub fn set_source_column(self, input: Option<ColumnIdentifier>) -> Self
A column of a data set.
sourcepub fn get_source_column(&self) -> &Option<ColumnIdentifier>
pub fn get_source_column(&self) -> &Option<ColumnIdentifier>
A column of a data set.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DestinationParameterValueConfigurationBuilder
impl Default for DestinationParameterValueConfigurationBuilder
source§fn default() -> DestinationParameterValueConfigurationBuilder
fn default() -> DestinationParameterValueConfigurationBuilder
source§impl PartialEq for DestinationParameterValueConfigurationBuilder
impl PartialEq for DestinationParameterValueConfigurationBuilder
source§fn eq(&self, other: &DestinationParameterValueConfigurationBuilder) -> bool
fn eq(&self, other: &DestinationParameterValueConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DestinationParameterValueConfigurationBuilder
Auto Trait Implementations§
impl Freeze for DestinationParameterValueConfigurationBuilder
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
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