#[non_exhaustive]pub struct ModifyingPropertiesBuilder { /* private fields */ }
Expand description
A builder for ModifyingProperties
.
Implementations§
source§impl ModifyingPropertiesBuilder
impl ModifyingPropertiesBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the property that is currently being modified.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the property that is currently being modified.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of the property that is currently being modified.
sourcepub fn active_value(self, input: impl Into<String>) -> Self
pub fn active_value(self, input: impl Into<String>) -> Self
The current value of the domain property that is being modified.
sourcepub fn set_active_value(self, input: Option<String>) -> Self
pub fn set_active_value(self, input: Option<String>) -> Self
The current value of the domain property that is being modified.
sourcepub fn get_active_value(&self) -> &Option<String>
pub fn get_active_value(&self) -> &Option<String>
The current value of the domain property that is being modified.
sourcepub fn pending_value(self, input: impl Into<String>) -> Self
pub fn pending_value(self, input: impl Into<String>) -> Self
The value that the property that is currently being modified will eventually have.
sourcepub fn set_pending_value(self, input: Option<String>) -> Self
pub fn set_pending_value(self, input: Option<String>) -> Self
The value that the property that is currently being modified will eventually have.
sourcepub fn get_pending_value(&self) -> &Option<String>
pub fn get_pending_value(&self) -> &Option<String>
The value that the property that is currently being modified will eventually have.
sourcepub fn value_type(self, input: PropertyValueType) -> Self
pub fn value_type(self, input: PropertyValueType) -> Self
The type of value that is currently being modified. Properties can have two types:
- PLAIN_TEXT: Contain direct values such as "1", "True", or "c5.large.search".
- STRINGIFIED_JSON: Contain content in JSON format, such as {"Enabled":"True"}".
sourcepub fn set_value_type(self, input: Option<PropertyValueType>) -> Self
pub fn set_value_type(self, input: Option<PropertyValueType>) -> Self
The type of value that is currently being modified. Properties can have two types:
- PLAIN_TEXT: Contain direct values such as "1", "True", or "c5.large.search".
- STRINGIFIED_JSON: Contain content in JSON format, such as {"Enabled":"True"}".
sourcepub fn get_value_type(&self) -> &Option<PropertyValueType>
pub fn get_value_type(&self) -> &Option<PropertyValueType>
The type of value that is currently being modified. Properties can have two types:
- PLAIN_TEXT: Contain direct values such as "1", "True", or "c5.large.search".
- STRINGIFIED_JSON: Contain content in JSON format, such as {"Enabled":"True"}".
sourcepub fn build(self) -> ModifyingProperties
pub fn build(self) -> ModifyingProperties
Consumes the builder and constructs a ModifyingProperties
.
Trait Implementations§
source§impl Clone for ModifyingPropertiesBuilder
impl Clone for ModifyingPropertiesBuilder
source§fn clone(&self) -> ModifyingPropertiesBuilder
fn clone(&self) -> ModifyingPropertiesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyingPropertiesBuilder
impl Debug for ModifyingPropertiesBuilder
source§impl Default for ModifyingPropertiesBuilder
impl Default for ModifyingPropertiesBuilder
source§fn default() -> ModifyingPropertiesBuilder
fn default() -> ModifyingPropertiesBuilder
source§impl PartialEq for ModifyingPropertiesBuilder
impl PartialEq for ModifyingPropertiesBuilder
source§fn eq(&self, other: &ModifyingPropertiesBuilder) -> bool
fn eq(&self, other: &ModifyingPropertiesBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.