#[non_exhaustive]pub struct EvidenceFinderEnablementBuilder { /* private fields */ }Expand description
A builder for EvidenceFinderEnablement.
Implementations§
source§impl EvidenceFinderEnablementBuilder
impl EvidenceFinderEnablementBuilder
sourcepub fn event_data_store_arn(self, input: impl Into<String>) -> Self
pub fn event_data_store_arn(self, input: impl Into<String>) -> Self
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 set_event_data_store_arn(self, input: Option<String>) -> Self
pub fn set_event_data_store_arn(self, input: Option<String>) -> Self
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 get_event_data_store_arn(&self) -> &Option<String>
pub fn get_event_data_store_arn(&self) -> &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.
sourcepub fn enablement_status(self, input: EvidenceFinderEnablementStatus) -> Self
pub fn enablement_status(self, input: EvidenceFinderEnablementStatus) -> Self
The current status of the evidence finder feature and the related event data store.
-
ENABLE_IN_PROGRESSmeans that you requested to enable evidence finder. An event data store is currently being created to support evidence finder queries. -
ENABLEDmeans 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_PROGRESSmeans that you requested to disable evidence finder, and your request is pending the deletion of the event data store. -
DISABLEDmeans 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 set_enablement_status(
self,
input: Option<EvidenceFinderEnablementStatus>
) -> Self
pub fn set_enablement_status( self, input: Option<EvidenceFinderEnablementStatus> ) -> Self
The current status of the evidence finder feature and the related event data store.
-
ENABLE_IN_PROGRESSmeans that you requested to enable evidence finder. An event data store is currently being created to support evidence finder queries. -
ENABLEDmeans 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_PROGRESSmeans that you requested to disable evidence finder, and your request is pending the deletion of the event data store. -
DISABLEDmeans 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 get_enablement_status(&self) -> &Option<EvidenceFinderEnablementStatus>
pub fn get_enablement_status(&self) -> &Option<EvidenceFinderEnablementStatus>
The current status of the evidence finder feature and the related event data store.
-
ENABLE_IN_PROGRESSmeans that you requested to enable evidence finder. An event data store is currently being created to support evidence finder queries. -
ENABLEDmeans 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_PROGRESSmeans that you requested to disable evidence finder, and your request is pending the deletion of the event data store. -
DISABLEDmeans 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, input: EvidenceFinderBackfillStatus) -> Self
pub fn backfill_status(self, input: EvidenceFinderBackfillStatus) -> Self
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_STARTEDmeans that the backfill hasn’t started yet. -
IN_PROGRESSmeans that the backfill is in progress. This can take up to 7 days to complete, depending on the amount of evidence data. -
COMPLETEDmeans that the backfill is complete. All of your past evidence is now queryable.
sourcepub fn set_backfill_status(
self,
input: Option<EvidenceFinderBackfillStatus>
) -> Self
pub fn set_backfill_status( self, input: Option<EvidenceFinderBackfillStatus> ) -> Self
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_STARTEDmeans that the backfill hasn’t started yet. -
IN_PROGRESSmeans that the backfill is in progress. This can take up to 7 days to complete, depending on the amount of evidence data. -
COMPLETEDmeans that the backfill is complete. All of your past evidence is now queryable.
sourcepub fn get_backfill_status(&self) -> &Option<EvidenceFinderBackfillStatus>
pub fn get_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_STARTEDmeans that the backfill hasn’t started yet. -
IN_PROGRESSmeans that the backfill is in progress. This can take up to 7 days to complete, depending on the amount of evidence data. -
COMPLETEDmeans that the backfill is complete. All of your past evidence is now queryable.
sourcepub fn error(self, input: impl Into<String>) -> Self
pub fn error(self, input: impl Into<String>) -> Self
Represents any errors that occurred when enabling or disabling evidence finder.
sourcepub fn set_error(self, input: Option<String>) -> Self
pub fn set_error(self, input: Option<String>) -> Self
Represents any errors that occurred when enabling or disabling evidence finder.
sourcepub fn get_error(&self) -> &Option<String>
pub fn get_error(&self) -> &Option<String>
Represents any errors that occurred when enabling or disabling evidence finder.
sourcepub fn build(self) -> EvidenceFinderEnablement
pub fn build(self) -> EvidenceFinderEnablement
Consumes the builder and constructs a EvidenceFinderEnablement.
Trait Implementations§
source§impl Clone for EvidenceFinderEnablementBuilder
impl Clone for EvidenceFinderEnablementBuilder
source§fn clone(&self) -> EvidenceFinderEnablementBuilder
fn clone(&self) -> EvidenceFinderEnablementBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for EvidenceFinderEnablementBuilder
impl Default for EvidenceFinderEnablementBuilder
source§fn default() -> EvidenceFinderEnablementBuilder
fn default() -> EvidenceFinderEnablementBuilder
source§impl PartialEq for EvidenceFinderEnablementBuilder
impl PartialEq for EvidenceFinderEnablementBuilder
source§fn eq(&self, other: &EvidenceFinderEnablementBuilder) -> bool
fn eq(&self, other: &EvidenceFinderEnablementBuilder) -> bool
self and other values to be equal, and is used
by ==.