Struct aws_sdk_ssm::types::ParameterHistory
source · #[non_exhaustive]pub struct ParameterHistory { /* private fields */ }Expand description
Information about parameter usage.
Implementations§
source§impl ParameterHistory
impl ParameterHistory
sourcepub fn type(&self) -> Option<&ParameterType>
pub fn type(&self) -> Option<&ParameterType>
The type of parameter used.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
Date the parameter was last changed or updated.
sourcepub fn last_modified_user(&self) -> Option<&str>
pub fn last_modified_user(&self) -> Option<&str>
Amazon Resource Name (ARN) of the Amazon Web Services user who last changed the parameter.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Information about the parameter.
sourcepub fn allowed_pattern(&self) -> Option<&str>
pub fn allowed_pattern(&self) -> Option<&str>
Parameter names can include the following letters and symbols.
a-zA-Z0-9_.-
sourcepub fn tier(&self) -> Option<&ParameterTier>
pub fn tier(&self) -> Option<&ParameterTier>
The parameter tier.
sourcepub fn policies(&self) -> Option<&[ParameterInlinePolicy]>
pub fn policies(&self) -> Option<&[ParameterInlinePolicy]>
Information about the policies assigned to a parameter.
Assigning parameter policies in the Amazon Web Services Systems Manager User Guide.
source§impl ParameterHistory
impl ParameterHistory
sourcepub fn builder() -> ParameterHistoryBuilder
pub fn builder() -> ParameterHistoryBuilder
Creates a new builder-style object to manufacture ParameterHistory.
Trait Implementations§
source§impl Clone for ParameterHistory
impl Clone for ParameterHistory
source§fn clone(&self) -> ParameterHistory
fn clone(&self) -> ParameterHistory
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 Debug for ParameterHistory
impl Debug for ParameterHistory
source§impl PartialEq<ParameterHistory> for ParameterHistory
impl PartialEq<ParameterHistory> for ParameterHistory
source§fn eq(&self, other: &ParameterHistory) -> bool
fn eq(&self, other: &ParameterHistory) -> bool
This method tests for
self and other values to be equal, and is used
by ==.