pub struct Builder { /* private fields */ }
Expand description
A builder for SetParameterValueConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn destination_parameter_name(self, input: impl Into<String>) -> Self
pub fn destination_parameter_name(self, input: impl Into<String>) -> Self
The destination parameter name of the SetParameterValueConfiguration
.
sourcepub fn set_destination_parameter_name(self, input: Option<String>) -> Self
pub fn set_destination_parameter_name(self, input: Option<String>) -> Self
The destination parameter name of the SetParameterValueConfiguration
.
sourcepub fn value(self, input: DestinationParameterValueConfiguration) -> Self
pub fn value(self, input: DestinationParameterValueConfiguration) -> Self
The configuration of destination 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_value(
self,
input: Option<DestinationParameterValueConfiguration>
) -> Self
pub fn set_value(
self,
input: Option<DestinationParameterValueConfiguration>
) -> Self
The configuration of destination 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) -> SetParameterValueConfiguration
pub fn build(self) -> SetParameterValueConfiguration
Consumes the builder and constructs a SetParameterValueConfiguration
.