#[non_exhaustive]pub struct ControlInputParameterBuilder { /* private fields */ }
Expand description
A builder for ControlInputParameter
.
Implementations§
source§impl ControlInputParameterBuilder
impl ControlInputParameterBuilder
sourcepub fn parameter_name(self, input: impl Into<String>) -> Self
pub fn parameter_name(self, input: impl Into<String>) -> Self
The name of a parameter, for example, BackupPlanFrequency
.
sourcepub fn set_parameter_name(self, input: Option<String>) -> Self
pub fn set_parameter_name(self, input: Option<String>) -> Self
The name of a parameter, for example, BackupPlanFrequency
.
sourcepub fn parameter_value(self, input: impl Into<String>) -> Self
pub fn parameter_value(self, input: impl Into<String>) -> Self
The value of parameter, for example, hourly
.
sourcepub fn set_parameter_value(self, input: Option<String>) -> Self
pub fn set_parameter_value(self, input: Option<String>) -> Self
The value of parameter, for example, hourly
.
sourcepub fn build(self) -> ControlInputParameter
pub fn build(self) -> ControlInputParameter
Consumes the builder and constructs a ControlInputParameter
.
Trait Implementations§
source§impl Clone for ControlInputParameterBuilder
impl Clone for ControlInputParameterBuilder
source§fn clone(&self) -> ControlInputParameterBuilder
fn clone(&self) -> ControlInputParameterBuilder
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 Debug for ControlInputParameterBuilder
impl Debug for ControlInputParameterBuilder
source§impl Default for ControlInputParameterBuilder
impl Default for ControlInputParameterBuilder
source§fn default() -> ControlInputParameterBuilder
fn default() -> ControlInputParameterBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ControlInputParameterBuilder> for ControlInputParameterBuilder
impl PartialEq<ControlInputParameterBuilder> for ControlInputParameterBuilder
source§fn eq(&self, other: &ControlInputParameterBuilder) -> bool
fn eq(&self, other: &ControlInputParameterBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.