pub struct SsmParameterPolicyEvent {
pub parameter_name: String,
pub parameter_arn: String,
pub event_type: String,
pub message: String,
pub created_at: String,
}Expand description
One emitted parameter-policy event, as recorded by the
/_fakecloud/ssm/parameter-policy-events admin endpoint.
Fields§
§parameter_name: String§parameter_arn: String§event_type: StringOne of ExpirationRegistered, ExpirationNotificationRegistered,
NoChangeNotificationRegistered, Expiration,
ExpirationNotification, NoChangeNotification.
message: String§created_at: StringTrait Implementations§
Source§impl Clone for SsmParameterPolicyEvent
impl Clone for SsmParameterPolicyEvent
Source§fn clone(&self) -> SsmParameterPolicyEvent
fn clone(&self) -> SsmParameterPolicyEvent
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 SsmParameterPolicyEvent
impl Debug for SsmParameterPolicyEvent
Source§impl<'de> Deserialize<'de> for SsmParameterPolicyEvent
impl<'de> Deserialize<'de> for SsmParameterPolicyEvent
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 SsmParameterPolicyEvent
impl RefUnwindSafe for SsmParameterPolicyEvent
impl Send for SsmParameterPolicyEvent
impl Sync for SsmParameterPolicyEvent
impl Unpin for SsmParameterPolicyEvent
impl UnsafeUnpin for SsmParameterPolicyEvent
impl UnwindSafe for SsmParameterPolicyEvent
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