#[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
impl StructuralPartialEq for ModifyingPropertiesBuilder
Auto Trait Implementations§
impl Freeze for ModifyingPropertiesBuilder
impl RefUnwindSafe for ModifyingPropertiesBuilder
impl Send for ModifyingPropertiesBuilder
impl Sync for ModifyingPropertiesBuilder
impl Unpin for ModifyingPropertiesBuilder
impl UnwindSafe for ModifyingPropertiesBuilder
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