pub struct ParameterPolicyEvent {
pub parameter_name: String,
pub parameter_arn: String,
pub event_type: String,
pub message: String,
pub created_at: DateTime<Utc>,
}Expand description
One emission of a parameter-policy notification (Expiration/ ExpirationNotification/NoChangeNotification). Captured at PutParameter time and at read time when an Expiration ages out a parameter.
Fields§
§parameter_name: String§parameter_arn: String§event_type: String§message: String§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for ParameterPolicyEvent
impl Clone for ParameterPolicyEvent
Source§fn clone(&self) -> ParameterPolicyEvent
fn clone(&self) -> ParameterPolicyEvent
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 ParameterPolicyEvent
impl Debug for ParameterPolicyEvent
Source§impl<'de> Deserialize<'de> for ParameterPolicyEvent
impl<'de> Deserialize<'de> for ParameterPolicyEvent
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 ParameterPolicyEvent
impl RefUnwindSafe for ParameterPolicyEvent
impl Send for ParameterPolicyEvent
impl Sync for ParameterPolicyEvent
impl Unpin for ParameterPolicyEvent
impl UnsafeUnpin for ParameterPolicyEvent
impl UnwindSafe for ParameterPolicyEvent
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