pub struct GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem {
pub resolved_at: Option<String>,
pub resolved_by: Option<f64>,
pub status: Option<ResolutionEnum>,
}
Fields§
§resolved_at: Option<String>
The date and time at which the resolution status was last updated.
resolved_by: Option<f64>
The ID of the user that updated the secret’s resolution status.
status: Option<ResolutionEnum>
The secret’s current 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 GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
impl Clone for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
Source§fn clone(
&self,
) -> GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
fn clone( &self, ) -> GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
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 GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
impl<'de> Deserialize<'de> for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
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 GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
impl PartialEq for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
Source§fn eq(
&self,
other: &GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem,
) -> bool
fn eq( &self, other: &GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
Auto Trait Implementations§
impl Freeze for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
impl RefUnwindSafe for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
impl Send for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
impl Sync for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
impl Unpin for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
impl UnwindSafe for GetDetectedSecretsSecretIdLocationsResponseMetaActivityFeedItem
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