/* * 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.applicationdiscovery.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* A list of continuous export descriptions. *

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

* The unique ID assigned to this export. *

*/ private String exportId; /** *

* Describes the status of the export. Can be one of the following values: *

* */ private String status; /** *

* Contains information about any errors that have occurred. This data type can have the following values: *

* */ private String statusDetail; /** *

* The name of the s3 bucket where the export data parquet files are stored. *

*/ private String s3Bucket; /** *

* The timestamp representing when the continuous export was started. *

*/ private java.util.Date startTime; /** *

* The timestamp that represents when this continuous export was stopped. *

*/ private java.util.Date stopTime; /** *

* The type of data collector used to gather this data (currently only offered for AGENT). *

*/ private String dataSource; /** *

* An object which describes how the data is stored. *

* */ private java.util.Map schemaStorageConfig; /** *

* The unique ID assigned to this export. *

* * @param exportId * The unique ID assigned to this export. */ public void setExportId(String exportId) { this.exportId = exportId; } /** *

* The unique ID assigned to this export. *

* * @return The unique ID assigned to this export. */ public String getExportId() { return this.exportId; } /** *

* The unique ID assigned to this export. *

* * @param exportId * The unique ID assigned to this export. * @return Returns a reference to this object so that method calls can be chained together. */ public ContinuousExportDescription withExportId(String exportId) { setExportId(exportId); return this; } /** *

* Describes the status of the export. Can be one of the following values: *

* * * @param status * Describes the status of the export. Can be one of the following values:

*