pub struct ParameterHistory {Show 13 fields
pub name: Option<String>,
pub parameter_type: Option<String>,
pub key_id: Option<String>,
pub last_modified_date: Option<f64>,
pub last_modified_user: Option<String>,
pub description: Option<String>,
pub value: Option<String>,
pub allowed_pattern: Option<String>,
pub version: Option<i64>,
pub labels: Vec<String>,
pub tier: Option<String>,
pub policies: Vec<ParameterInlinePolicy>,
pub data_type: Option<String>,
}Expand description
A version history entry for a parameter (returned by GetParameterHistory).
Fields§
§name: Option<String>The parameter name.
parameter_type: Option<String>The parameter type.
key_id: Option<String>The KMS key ID for SecureString parameters.
last_modified_date: Option<f64>The date this version was last modified.
last_modified_user: Option<String>The ARN of the user who last modified this version.
description: Option<String>A description of the parameter at this version.
value: Option<String>The parameter value at this version.
allowed_pattern: Option<String>The allowed pattern for the parameter value.
version: Option<i64>The version number.
labels: Vec<String>Labels attached to this version.
tier: Option<String>The parameter tier.
policies: Vec<ParameterInlinePolicy>Policies associated with the parameter.
data_type: Option<String>The data type of the parameter.
Trait Implementations§
Source§impl Clone for ParameterHistory
impl Clone for ParameterHistory
Source§fn clone(&self) -> ParameterHistory
fn clone(&self) -> ParameterHistory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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<'de> Deserialize<'de> for ParameterHistory
impl<'de> Deserialize<'de> for ParameterHistory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ParameterHistory
impl RefUnwindSafe for ParameterHistory
impl Send for ParameterHistory
impl Sync for ParameterHistory
impl Unpin for ParameterHistory
impl UnsafeUnpin for ParameterHistory
impl UnwindSafe for ParameterHistory
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