/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.auditmanager.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* 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. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class EvidenceFinderEnablement implements Serializable, Cloneable, StructuredPojo { /** *

* 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. *

*/ private String eventDataStoreArn; /** *

* The current status of the evidence finder feature and the related event data store. *

* */ private String enablementStatus; /** *

* 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. *

* */ private String backfillStatus; /** *

* Represents any errors that occurred when enabling or disabling evidence finder. *

*/ private String error; /** *

* 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. *

* * @param eventDataStoreArn * 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. */ public void setEventDataStoreArn(String eventDataStoreArn) { this.eventDataStoreArn = eventDataStoreArn; } /** *

* 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. *

* * @return 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. */ public String getEventDataStoreArn() { return this.eventDataStoreArn; } /** *

* 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. *

* * @param eventDataStoreArn * 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. * @return Returns a reference to this object so that method calls can be chained together. */ public EvidenceFinderEnablement withEventDataStoreArn(String eventDataStoreArn) { setEventDataStoreArn(eventDataStoreArn); return this; } /** *

* The current status of the evidence finder feature and the related event data store. *

* * * @param enablementStatus * The current status of the evidence finder feature and the related event data store.

*