#[non_exhaustive]pub struct EvidenceFinderEnablement {
pub event_data_store_arn: Option<String>,
pub enablement_status: Option<EvidenceFinderEnablementStatus>,
pub backfill_status: Option<EvidenceFinderBackfillStatus>,
pub error: Option<String>,
}
Expand description
The settings object that specifies whether evidence finder is enabled. This object also describes the related event data store, and the backfill status for populating the event data store with evidence data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.event_data_store_arn: Option<String>
The Amazon Resource Name (ARN) of the CloudTrail Lake event data store that’s used by evidence finder. The event data store is the lake of evidence data that evidence finder runs queries against.
enablement_status: Option<EvidenceFinderEnablementStatus>
The current status of the evidence finder feature and the related event data store.
-
ENABLE_IN_PROGRESS
means that you requested to enable evidence finder. An event data store is currently being created to support evidence finder queries. -
ENABLED
means that an event data store was successfully created and evidence finder is enabled. We recommend that you wait 7 days until the event data store is backfilled with your past two years’ worth of evidence data. You can use evidence finder in the meantime, but not all data might be available until the backfill is complete. -
DISABLE_IN_PROGRESS
means that you requested to disable evidence finder, and your request is pending the deletion of the event data store. -
DISABLED
means that you have permanently disabled evidence finder and the event data store has been deleted. You can't re-enable evidence finder after this point.
backfill_status: Option<EvidenceFinderBackfillStatus>
The current status of the evidence data backfill process.
The backfill starts after you enable evidence finder. During this task, Audit Manager populates an event data store with your past two years’ worth of evidence data so that your evidence can be queried.
-
NOT_STARTED
means that the backfill hasn’t started yet. -
IN_PROGRESS
means that the backfill is in progress. This can take up to 7 days to complete, depending on the amount of evidence data. -
COMPLETED
means that the backfill is complete. All of your past evidence is now queryable.
error: Option<String>
Represents any errors that occurred when enabling or disabling evidence finder.
Implementations§
source§impl EvidenceFinderEnablement
impl EvidenceFinderEnablement
sourcepub fn event_data_store_arn(&self) -> Option<&str>
pub fn event_data_store_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the CloudTrail Lake event data store that’s used by evidence finder. The event data store is the lake of evidence data that evidence finder runs queries against.
sourcepub fn enablement_status(&self) -> Option<&EvidenceFinderEnablementStatus>
pub fn enablement_status(&self) -> Option<&EvidenceFinderEnablementStatus>
The current status of the evidence finder feature and the related event data store.
-
ENABLE_IN_PROGRESS
means that you requested to enable evidence finder. An event data store is currently being created to support evidence finder queries. -
ENABLED
means that an event data store was successfully created and evidence finder is enabled. We recommend that you wait 7 days until the event data store is backfilled with your past two years’ worth of evidence data. You can use evidence finder in the meantime, but not all data might be available until the backfill is complete. -
DISABLE_IN_PROGRESS
means that you requested to disable evidence finder, and your request is pending the deletion of the event data store. -
DISABLED
means that you have permanently disabled evidence finder and the event data store has been deleted. You can't re-enable evidence finder after this point.
sourcepub fn backfill_status(&self) -> Option<&EvidenceFinderBackfillStatus>
pub fn backfill_status(&self) -> Option<&EvidenceFinderBackfillStatus>
The current status of the evidence data backfill process.
The backfill starts after you enable evidence finder. During this task, Audit Manager populates an event data store with your past two years’ worth of evidence data so that your evidence can be queried.
-
NOT_STARTED
means that the backfill hasn’t started yet. -
IN_PROGRESS
means that the backfill is in progress. This can take up to 7 days to complete, depending on the amount of evidence data. -
COMPLETED
means that the backfill is complete. All of your past evidence is now queryable.
source§impl EvidenceFinderEnablement
impl EvidenceFinderEnablement
sourcepub fn builder() -> EvidenceFinderEnablementBuilder
pub fn builder() -> EvidenceFinderEnablementBuilder
Creates a new builder-style object to manufacture EvidenceFinderEnablement
.
Trait Implementations§
source§impl Clone for EvidenceFinderEnablement
impl Clone for EvidenceFinderEnablement
source§fn clone(&self) -> EvidenceFinderEnablement
fn clone(&self) -> EvidenceFinderEnablement
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EvidenceFinderEnablement
impl Debug for EvidenceFinderEnablement
source§impl PartialEq for EvidenceFinderEnablement
impl PartialEq for EvidenceFinderEnablement
source§fn eq(&self, other: &EvidenceFinderEnablement) -> bool
fn eq(&self, other: &EvidenceFinderEnablement) -> bool
self
and other
values to be equal, and is used
by ==
.