Struct aws_sdk_ssm::types::ParameterMetadata
source · #[non_exhaustive]pub struct ParameterMetadata { /* private fields */ }
Expand description
Metadata includes information like the ARN of the last user and the date/time the parameter was last used.
Implementations§
source§impl ParameterMetadata
impl ParameterMetadata
sourcepub fn type(&self) -> Option<&ParameterType>
pub fn type(&self) -> Option<&ParameterType>
The type of parameter. Valid parameter types include the following: String
, StringList
, and SecureString
.
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>
Description of the parameter actions.
sourcepub fn allowed_pattern(&self) -> Option<&str>
pub fn allowed_pattern(&self) -> Option<&str>
A parameter name can include only 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]>
A list of policies associated with a parameter.
source§impl ParameterMetadata
impl ParameterMetadata
sourcepub fn builder() -> ParameterMetadataBuilder
pub fn builder() -> ParameterMetadataBuilder
Creates a new builder-style object to manufacture ParameterMetadata
.
Trait Implementations§
source§impl Clone for ParameterMetadata
impl Clone for ParameterMetadata
source§fn clone(&self) -> ParameterMetadata
fn clone(&self) -> ParameterMetadata
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 ParameterMetadata
impl Debug for ParameterMetadata
source§impl PartialEq<ParameterMetadata> for ParameterMetadata
impl PartialEq<ParameterMetadata> for ParameterMetadata
source§fn eq(&self, other: &ParameterMetadata) -> bool
fn eq(&self, other: &ParameterMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ParameterMetadata
Auto Trait Implementations§
impl RefUnwindSafe for ParameterMetadata
impl Send for ParameterMetadata
impl Sync for ParameterMetadata
impl Unpin for ParameterMetadata
impl UnwindSafe for ParameterMetadata
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