pub struct PutDetectedSecretsSecretIdResponseHistoryItem {
pub actor: Option<f64>,
pub created_at: Option<String>,
pub resolution: Option<ResolutionEnum>,
}
Fields§
§actor: Option<f64>
The ID of the user that updated the secret’s resolution status.
created_at: Option<String>
The date and time at which the resolution status was updated.
resolution: Option<ResolutionEnum>
The secret’s updated resolution status:
ACTIVE
— The secret is active.FALSE_POSITIVE
— The discovered secret is not an actual secret.REVOKED
— The secret is valid, but the user rotated their key to resolve the issue.ACCEPTED_RISK
— The Secret Scanner found the secret, but user accepts the risk of publishing it.
Trait Implementations§
Source§impl Clone for PutDetectedSecretsSecretIdResponseHistoryItem
impl Clone for PutDetectedSecretsSecretIdResponseHistoryItem
Source§fn clone(&self) -> PutDetectedSecretsSecretIdResponseHistoryItem
fn clone(&self) -> PutDetectedSecretsSecretIdResponseHistoryItem
Returns a duplicate 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<'de> Deserialize<'de> for PutDetectedSecretsSecretIdResponseHistoryItem
impl<'de> Deserialize<'de> for PutDetectedSecretsSecretIdResponseHistoryItem
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
Source§impl PartialEq for PutDetectedSecretsSecretIdResponseHistoryItem
impl PartialEq for PutDetectedSecretsSecretIdResponseHistoryItem
Source§fn eq(&self, other: &PutDetectedSecretsSecretIdResponseHistoryItem) -> bool
fn eq(&self, other: &PutDetectedSecretsSecretIdResponseHistoryItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutDetectedSecretsSecretIdResponseHistoryItem
Auto Trait Implementations§
impl Freeze for PutDetectedSecretsSecretIdResponseHistoryItem
impl RefUnwindSafe for PutDetectedSecretsSecretIdResponseHistoryItem
impl Send for PutDetectedSecretsSecretIdResponseHistoryItem
impl Sync for PutDetectedSecretsSecretIdResponseHistoryItem
impl Unpin for PutDetectedSecretsSecretIdResponseHistoryItem
impl UnwindSafe for PutDetectedSecretsSecretIdResponseHistoryItem
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