/* * 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.rds.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DescribeExportTasksRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The identifier of the snapshot or cluster export task to be described. *

*/ private String exportTaskIdentifier; /** *

* The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3. *

*/ private String sourceArn; /** *

* Filters specify one or more snapshot or cluster exports to describe. The filters are specified as name-value * pairs that define what to include in the output. Filter names and values are case-sensitive. *

*

* Supported filters include the following: *

* */ private com.amazonaws.internal.SdkInternalList filters; /** *

* An optional pagination token provided by a previous DescribeExportTasks request. If you specify this * parameter, the response includes only records beyond the marker, up to the value specified by the * MaxRecords parameter. *

*/ private String marker; /** *

* The maximum number of records to include in the response. If more records exist than the specified value, a * pagination token called a marker is included in the response. You can use the marker in a later * DescribeExportTasks request to retrieve the remaining results. *

*

* Default: 100 *

*

* Constraints: Minimum 20, maximum 100. *

*/ private Integer maxRecords; /** *

* The type of source for the export. *

*/ private String sourceType; /** *

* The identifier of the snapshot or cluster export task to be described. *

* * @param exportTaskIdentifier * The identifier of the snapshot or cluster export task to be described. */ public void setExportTaskIdentifier(String exportTaskIdentifier) { this.exportTaskIdentifier = exportTaskIdentifier; } /** *

* The identifier of the snapshot or cluster export task to be described. *

* * @return The identifier of the snapshot or cluster export task to be described. */ public String getExportTaskIdentifier() { return this.exportTaskIdentifier; } /** *

* The identifier of the snapshot or cluster export task to be described. *

* * @param exportTaskIdentifier * The identifier of the snapshot or cluster export task to be described. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeExportTasksRequest withExportTaskIdentifier(String exportTaskIdentifier) { setExportTaskIdentifier(exportTaskIdentifier); return this; } /** *

* The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3. *

* * @param sourceArn * The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3. */ public void setSourceArn(String sourceArn) { this.sourceArn = sourceArn; } /** *

* The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3. *

* * @return The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3. */ public String getSourceArn() { return this.sourceArn; } /** *

* The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3. *

* * @param sourceArn * The Amazon Resource Name (ARN) of the snapshot or cluster exported to Amazon S3. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeExportTasksRequest withSourceArn(String sourceArn) { setSourceArn(sourceArn); return this; } /** *

* Filters specify one or more snapshot or cluster exports to describe. The filters are specified as name-value * pairs that define what to include in the output. Filter names and values are case-sensitive. *

*

* Supported filters include the following: *

* * * @return Filters specify one or more snapshot or cluster exports to describe. The filters are specified as * name-value pairs that define what to include in the output. Filter names and values are * case-sensitive.

*

* Supported filters include the following: *

*