Struct aws_sdk_cloudformation::model::Parameter
source · [−]#[non_exhaustive]pub struct Parameter { /* private fields */ }
Expand description
The Parameter data type.
Implementations
sourceimpl Parameter
impl Parameter
sourcepub fn parameter_key(&self) -> Option<&str>
pub fn parameter_key(&self) -> Option<&str>
The key associated with the parameter. If you don't specify a key and value for a particular parameter, CloudFormation uses the default value that's specified in your template.
sourcepub fn parameter_value(&self) -> Option<&str>
pub fn parameter_value(&self) -> Option<&str>
The input value associated with the parameter.
sourcepub fn use_previous_value(&self) -> Option<bool>
pub fn use_previous_value(&self) -> Option<bool>
During a stack update, use the existing parameter value that the stack is using for a given parameter key. If you specify true
, do not specify a parameter value.
sourcepub fn resolved_value(&self) -> Option<&str>
pub fn resolved_value(&self) -> Option<&str>
Read-only. The value that corresponds to a SSM parameter key. This field is returned only for SSM
parameter types in the template.
Trait Implementations
impl StructuralPartialEq for Parameter
Auto Trait Implementations
impl RefUnwindSafe for Parameter
impl Send for Parameter
impl Sync for Parameter
impl Unpin for Parameter
impl UnwindSafe for Parameter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more