/* * 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; @Generated("com.amazonaws:aws-java-sdk-code-generator") public class StartContinuousExportResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The unique ID assigned to this export. *

*/ private String exportId; /** *

* 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 type of data collector used to gather this data (currently only offered for AGENT). *

*/ private String dataSource; /** *

* A dictionary 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 StartContinuousExportResult withExportId(String exportId) { setExportId(exportId); return this; } /** *

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

* * @param s3Bucket * The name of the s3 bucket where the export data parquet files are stored. */ public void setS3Bucket(String s3Bucket) { this.s3Bucket = s3Bucket; } /** *

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

* * @return The name of the s3 bucket where the export data parquet files are stored. */ public String getS3Bucket() { return this.s3Bucket; } /** *

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

* * @param s3Bucket * The name of the s3 bucket where the export data parquet files are stored. * @return Returns a reference to this object so that method calls can be chained together. */ public StartContinuousExportResult withS3Bucket(String s3Bucket) { setS3Bucket(s3Bucket); return this; } /** *

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

* * @param startTime * The timestamp representing when the continuous export was started. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** *

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

* * @return The timestamp representing when the continuous export was started. */ public java.util.Date getStartTime() { return this.startTime; } /** *

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

* * @param startTime * The timestamp representing when the continuous export was started. * @return Returns a reference to this object so that method calls can be chained together. */ public StartContinuousExportResult withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** *

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

* * @param dataSource * The type of data collector used to gather this data (currently only offered for AGENT). * @see DataSource */ public void setDataSource(String dataSource) { this.dataSource = dataSource; } /** *

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

* * @return The type of data collector used to gather this data (currently only offered for AGENT). * @see DataSource */ public String getDataSource() { return this.dataSource; } /** *

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

* * @param dataSource * The type of data collector used to gather this data (currently only offered for AGENT). * @return Returns a reference to this object so that method calls can be chained together. * @see DataSource */ public StartContinuousExportResult withDataSource(String dataSource) { setDataSource(dataSource); return this; } /** *

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

* * @param dataSource * The type of data collector used to gather this data (currently only offered for AGENT). * @return Returns a reference to this object so that method calls can be chained together. * @see DataSource */ public StartContinuousExportResult withDataSource(DataSource dataSource) { this.dataSource = dataSource.toString(); return this; } /** *

* A dictionary which describes how the data is stored. *

* * * @return A dictionary which describes how the data is stored.

*