#[non_exhaustive]pub struct RemediationParameterValueBuilder { /* private fields */ }Expand description
A builder for RemediationParameterValue.
Implementations§
source§impl RemediationParameterValueBuilder
impl RemediationParameterValueBuilder
sourcepub fn resource_value(self, input: ResourceValue) -> Self
pub fn resource_value(self, input: ResourceValue) -> Self
The value is dynamic and changes at run-time.
sourcepub fn set_resource_value(self, input: Option<ResourceValue>) -> Self
pub fn set_resource_value(self, input: Option<ResourceValue>) -> Self
The value is dynamic and changes at run-time.
sourcepub fn get_resource_value(&self) -> &Option<ResourceValue>
pub fn get_resource_value(&self) -> &Option<ResourceValue>
The value is dynamic and changes at run-time.
sourcepub fn static_value(self, input: StaticValue) -> Self
pub fn static_value(self, input: StaticValue) -> Self
The value is static and does not change at run-time.
sourcepub fn set_static_value(self, input: Option<StaticValue>) -> Self
pub fn set_static_value(self, input: Option<StaticValue>) -> Self
The value is static and does not change at run-time.
sourcepub fn get_static_value(&self) -> &Option<StaticValue>
pub fn get_static_value(&self) -> &Option<StaticValue>
The value is static and does not change at run-time.
sourcepub fn build(self) -> RemediationParameterValue
pub fn build(self) -> RemediationParameterValue
Consumes the builder and constructs a RemediationParameterValue.
Trait Implementations§
source§impl Clone for RemediationParameterValueBuilder
impl Clone for RemediationParameterValueBuilder
source§fn clone(&self) -> RemediationParameterValueBuilder
fn clone(&self) -> RemediationParameterValueBuilder
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 Default for RemediationParameterValueBuilder
impl Default for RemediationParameterValueBuilder
source§fn default() -> RemediationParameterValueBuilder
fn default() -> RemediationParameterValueBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RemediationParameterValueBuilder
impl PartialEq for RemediationParameterValueBuilder
source§fn eq(&self, other: &RemediationParameterValueBuilder) -> bool
fn eq(&self, other: &RemediationParameterValueBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RemediationParameterValueBuilder
Auto Trait Implementations§
impl RefUnwindSafe for RemediationParameterValueBuilder
impl Send for RemediationParameterValueBuilder
impl Sync for RemediationParameterValueBuilder
impl Unpin for RemediationParameterValueBuilder
impl UnwindSafe for RemediationParameterValueBuilder
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.