Struct aws_sdk_config::model::RemediationParameterValue
source · #[non_exhaustive]pub struct RemediationParameterValue { /* private fields */ }Expand description
The value is either a dynamic (resource) value or a static value. You must select either a dynamic value or a static value.
Implementations§
source§impl RemediationParameterValue
impl RemediationParameterValue
sourcepub fn resource_value(&self) -> Option<&ResourceValue>
pub fn resource_value(&self) -> Option<&ResourceValue>
The value is dynamic and changes at run-time.
sourcepub fn static_value(&self) -> Option<&StaticValue>
pub fn static_value(&self) -> Option<&StaticValue>
The value is static and does not change at run-time.
source§impl RemediationParameterValue
impl RemediationParameterValue
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RemediationParameterValue.
Trait Implementations§
source§impl Clone for RemediationParameterValue
impl Clone for RemediationParameterValue
source§fn clone(&self) -> RemediationParameterValue
fn clone(&self) -> RemediationParameterValue
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 more