This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-rds/include/aws/rds/model/DescribeReservedDBInstancesRequest.h

605 lines
27 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rds/RDS_EXPORTS.h>
#include <aws/rds/RDSRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/rds/model/Filter.h>
#include <utility>
namespace Aws
{
namespace RDS
{
namespace Model
{
/**
* <p/><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeReservedDBInstancesMessage">AWS
* API Reference</a></p>
*/
class AWS_RDS_API DescribeReservedDBInstancesRequest : public RDSRequest
{
public:
DescribeReservedDBInstancesRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "DescribeReservedDBInstances"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>The reserved DB instance identifier filter value. Specify this parameter to
* show only the reservation that matches the specified reservation ID.</p>
*/
inline const Aws::String& GetReservedDBInstanceId() const{ return m_reservedDBInstanceId; }
/**
* <p>The reserved DB instance identifier filter value. Specify this parameter to
* show only the reservation that matches the specified reservation ID.</p>
*/
inline bool ReservedDBInstanceIdHasBeenSet() const { return m_reservedDBInstanceIdHasBeenSet; }
/**
* <p>The reserved DB instance identifier filter value. Specify this parameter to
* show only the reservation that matches the specified reservation ID.</p>
*/
inline void SetReservedDBInstanceId(const Aws::String& value) { m_reservedDBInstanceIdHasBeenSet = true; m_reservedDBInstanceId = value; }
/**
* <p>The reserved DB instance identifier filter value. Specify this parameter to
* show only the reservation that matches the specified reservation ID.</p>
*/
inline void SetReservedDBInstanceId(Aws::String&& value) { m_reservedDBInstanceIdHasBeenSet = true; m_reservedDBInstanceId = std::move(value); }
/**
* <p>The reserved DB instance identifier filter value. Specify this parameter to
* show only the reservation that matches the specified reservation ID.</p>
*/
inline void SetReservedDBInstanceId(const char* value) { m_reservedDBInstanceIdHasBeenSet = true; m_reservedDBInstanceId.assign(value); }
/**
* <p>The reserved DB instance identifier filter value. Specify this parameter to
* show only the reservation that matches the specified reservation ID.</p>
*/
inline DescribeReservedDBInstancesRequest& WithReservedDBInstanceId(const Aws::String& value) { SetReservedDBInstanceId(value); return *this;}
/**
* <p>The reserved DB instance identifier filter value. Specify this parameter to
* show only the reservation that matches the specified reservation ID.</p>
*/
inline DescribeReservedDBInstancesRequest& WithReservedDBInstanceId(Aws::String&& value) { SetReservedDBInstanceId(std::move(value)); return *this;}
/**
* <p>The reserved DB instance identifier filter value. Specify this parameter to
* show only the reservation that matches the specified reservation ID.</p>
*/
inline DescribeReservedDBInstancesRequest& WithReservedDBInstanceId(const char* value) { SetReservedDBInstanceId(value); return *this;}
/**
* <p>The offering identifier filter value. Specify this parameter to show only
* purchased reservations matching the specified offering identifier.</p>
*/
inline const Aws::String& GetReservedDBInstancesOfferingId() const{ return m_reservedDBInstancesOfferingId; }
/**
* <p>The offering identifier filter value. Specify this parameter to show only
* purchased reservations matching the specified offering identifier.</p>
*/
inline bool ReservedDBInstancesOfferingIdHasBeenSet() const { return m_reservedDBInstancesOfferingIdHasBeenSet; }
/**
* <p>The offering identifier filter value. Specify this parameter to show only
* purchased reservations matching the specified offering identifier.</p>
*/
inline void SetReservedDBInstancesOfferingId(const Aws::String& value) { m_reservedDBInstancesOfferingIdHasBeenSet = true; m_reservedDBInstancesOfferingId = value; }
/**
* <p>The offering identifier filter value. Specify this parameter to show only
* purchased reservations matching the specified offering identifier.</p>
*/
inline void SetReservedDBInstancesOfferingId(Aws::String&& value) { m_reservedDBInstancesOfferingIdHasBeenSet = true; m_reservedDBInstancesOfferingId = std::move(value); }
/**
* <p>The offering identifier filter value. Specify this parameter to show only
* purchased reservations matching the specified offering identifier.</p>
*/
inline void SetReservedDBInstancesOfferingId(const char* value) { m_reservedDBInstancesOfferingIdHasBeenSet = true; m_reservedDBInstancesOfferingId.assign(value); }
/**
* <p>The offering identifier filter value. Specify this parameter to show only
* purchased reservations matching the specified offering identifier.</p>
*/
inline DescribeReservedDBInstancesRequest& WithReservedDBInstancesOfferingId(const Aws::String& value) { SetReservedDBInstancesOfferingId(value); return *this;}
/**
* <p>The offering identifier filter value. Specify this parameter to show only
* purchased reservations matching the specified offering identifier.</p>
*/
inline DescribeReservedDBInstancesRequest& WithReservedDBInstancesOfferingId(Aws::String&& value) { SetReservedDBInstancesOfferingId(std::move(value)); return *this;}
/**
* <p>The offering identifier filter value. Specify this parameter to show only
* purchased reservations matching the specified offering identifier.</p>
*/
inline DescribeReservedDBInstancesRequest& WithReservedDBInstancesOfferingId(const char* value) { SetReservedDBInstancesOfferingId(value); return *this;}
/**
* <p>The DB instance class filter value. Specify this parameter to show only those
* reservations matching the specified DB instances class.</p>
*/
inline const Aws::String& GetDBInstanceClass() const{ return m_dBInstanceClass; }
/**
* <p>The DB instance class filter value. Specify this parameter to show only those
* reservations matching the specified DB instances class.</p>
*/
inline bool DBInstanceClassHasBeenSet() const { return m_dBInstanceClassHasBeenSet; }
/**
* <p>The DB instance class filter value. Specify this parameter to show only those
* reservations matching the specified DB instances class.</p>
*/
inline void SetDBInstanceClass(const Aws::String& value) { m_dBInstanceClassHasBeenSet = true; m_dBInstanceClass = value; }
/**
* <p>The DB instance class filter value. Specify this parameter to show only those
* reservations matching the specified DB instances class.</p>
*/
inline void SetDBInstanceClass(Aws::String&& value) { m_dBInstanceClassHasBeenSet = true; m_dBInstanceClass = std::move(value); }
/**
* <p>The DB instance class filter value. Specify this parameter to show only those
* reservations matching the specified DB instances class.</p>
*/
inline void SetDBInstanceClass(const char* value) { m_dBInstanceClassHasBeenSet = true; m_dBInstanceClass.assign(value); }
/**
* <p>The DB instance class filter value. Specify this parameter to show only those
* reservations matching the specified DB instances class.</p>
*/
inline DescribeReservedDBInstancesRequest& WithDBInstanceClass(const Aws::String& value) { SetDBInstanceClass(value); return *this;}
/**
* <p>The DB instance class filter value. Specify this parameter to show only those
* reservations matching the specified DB instances class.</p>
*/
inline DescribeReservedDBInstancesRequest& WithDBInstanceClass(Aws::String&& value) { SetDBInstanceClass(std::move(value)); return *this;}
/**
* <p>The DB instance class filter value. Specify this parameter to show only those
* reservations matching the specified DB instances class.</p>
*/
inline DescribeReservedDBInstancesRequest& WithDBInstanceClass(const char* value) { SetDBInstanceClass(value); return *this;}
/**
* <p>The duration filter value, specified in years or seconds. Specify this
* parameter to show only reservations for this duration.</p> <p>Valid Values:
* <code>1 | 3 | 31536000 | 94608000</code> </p>
*/
inline const Aws::String& GetDuration() const{ return m_duration; }
/**
* <p>The duration filter value, specified in years or seconds. Specify this
* parameter to show only reservations for this duration.</p> <p>Valid Values:
* <code>1 | 3 | 31536000 | 94608000</code> </p>
*/
inline bool DurationHasBeenSet() const { return m_durationHasBeenSet; }
/**
* <p>The duration filter value, specified in years or seconds. Specify this
* parameter to show only reservations for this duration.</p> <p>Valid Values:
* <code>1 | 3 | 31536000 | 94608000</code> </p>
*/
inline void SetDuration(const Aws::String& value) { m_durationHasBeenSet = true; m_duration = value; }
/**
* <p>The duration filter value, specified in years or seconds. Specify this
* parameter to show only reservations for this duration.</p> <p>Valid Values:
* <code>1 | 3 | 31536000 | 94608000</code> </p>
*/
inline void SetDuration(Aws::String&& value) { m_durationHasBeenSet = true; m_duration = std::move(value); }
/**
* <p>The duration filter value, specified in years or seconds. Specify this
* parameter to show only reservations for this duration.</p> <p>Valid Values:
* <code>1 | 3 | 31536000 | 94608000</code> </p>
*/
inline void SetDuration(const char* value) { m_durationHasBeenSet = true; m_duration.assign(value); }
/**
* <p>The duration filter value, specified in years or seconds. Specify this
* parameter to show only reservations for this duration.</p> <p>Valid Values:
* <code>1 | 3 | 31536000 | 94608000</code> </p>
*/
inline DescribeReservedDBInstancesRequest& WithDuration(const Aws::String& value) { SetDuration(value); return *this;}
/**
* <p>The duration filter value, specified in years or seconds. Specify this
* parameter to show only reservations for this duration.</p> <p>Valid Values:
* <code>1 | 3 | 31536000 | 94608000</code> </p>
*/
inline DescribeReservedDBInstancesRequest& WithDuration(Aws::String&& value) { SetDuration(std::move(value)); return *this;}
/**
* <p>The duration filter value, specified in years or seconds. Specify this
* parameter to show only reservations for this duration.</p> <p>Valid Values:
* <code>1 | 3 | 31536000 | 94608000</code> </p>
*/
inline DescribeReservedDBInstancesRequest& WithDuration(const char* value) { SetDuration(value); return *this;}
/**
* <p>The product description filter value. Specify this parameter to show only
* those reservations matching the specified product description.</p>
*/
inline const Aws::String& GetProductDescription() const{ return m_productDescription; }
/**
* <p>The product description filter value. Specify this parameter to show only
* those reservations matching the specified product description.</p>
*/
inline bool ProductDescriptionHasBeenSet() const { return m_productDescriptionHasBeenSet; }
/**
* <p>The product description filter value. Specify this parameter to show only
* those reservations matching the specified product description.</p>
*/
inline void SetProductDescription(const Aws::String& value) { m_productDescriptionHasBeenSet = true; m_productDescription = value; }
/**
* <p>The product description filter value. Specify this parameter to show only
* those reservations matching the specified product description.</p>
*/
inline void SetProductDescription(Aws::String&& value) { m_productDescriptionHasBeenSet = true; m_productDescription = std::move(value); }
/**
* <p>The product description filter value. Specify this parameter to show only
* those reservations matching the specified product description.</p>
*/
inline void SetProductDescription(const char* value) { m_productDescriptionHasBeenSet = true; m_productDescription.assign(value); }
/**
* <p>The product description filter value. Specify this parameter to show only
* those reservations matching the specified product description.</p>
*/
inline DescribeReservedDBInstancesRequest& WithProductDescription(const Aws::String& value) { SetProductDescription(value); return *this;}
/**
* <p>The product description filter value. Specify this parameter to show only
* those reservations matching the specified product description.</p>
*/
inline DescribeReservedDBInstancesRequest& WithProductDescription(Aws::String&& value) { SetProductDescription(std::move(value)); return *this;}
/**
* <p>The product description filter value. Specify this parameter to show only
* those reservations matching the specified product description.</p>
*/
inline DescribeReservedDBInstancesRequest& WithProductDescription(const char* value) { SetProductDescription(value); return *this;}
/**
* <p>The offering type filter value. Specify this parameter to show only the
* available offerings matching the specified offering type.</p> <p>Valid Values:
* <code>"Partial Upfront" | "All Upfront" | "No Upfront" </code> </p>
*/
inline const Aws::String& GetOfferingType() const{ return m_offeringType; }
/**
* <p>The offering type filter value. Specify this parameter to show only the
* available offerings matching the specified offering type.</p> <p>Valid Values:
* <code>"Partial Upfront" | "All Upfront" | "No Upfront" </code> </p>
*/
inline bool OfferingTypeHasBeenSet() const { return m_offeringTypeHasBeenSet; }
/**
* <p>The offering type filter value. Specify this parameter to show only the
* available offerings matching the specified offering type.</p> <p>Valid Values:
* <code>"Partial Upfront" | "All Upfront" | "No Upfront" </code> </p>
*/
inline void SetOfferingType(const Aws::String& value) { m_offeringTypeHasBeenSet = true; m_offeringType = value; }
/**
* <p>The offering type filter value. Specify this parameter to show only the
* available offerings matching the specified offering type.</p> <p>Valid Values:
* <code>"Partial Upfront" | "All Upfront" | "No Upfront" </code> </p>
*/
inline void SetOfferingType(Aws::String&& value) { m_offeringTypeHasBeenSet = true; m_offeringType = std::move(value); }
/**
* <p>The offering type filter value. Specify this parameter to show only the
* available offerings matching the specified offering type.</p> <p>Valid Values:
* <code>"Partial Upfront" | "All Upfront" | "No Upfront" </code> </p>
*/
inline void SetOfferingType(const char* value) { m_offeringTypeHasBeenSet = true; m_offeringType.assign(value); }
/**
* <p>The offering type filter value. Specify this parameter to show only the
* available offerings matching the specified offering type.</p> <p>Valid Values:
* <code>"Partial Upfront" | "All Upfront" | "No Upfront" </code> </p>
*/
inline DescribeReservedDBInstancesRequest& WithOfferingType(const Aws::String& value) { SetOfferingType(value); return *this;}
/**
* <p>The offering type filter value. Specify this parameter to show only the
* available offerings matching the specified offering type.</p> <p>Valid Values:
* <code>"Partial Upfront" | "All Upfront" | "No Upfront" </code> </p>
*/
inline DescribeReservedDBInstancesRequest& WithOfferingType(Aws::String&& value) { SetOfferingType(std::move(value)); return *this;}
/**
* <p>The offering type filter value. Specify this parameter to show only the
* available offerings matching the specified offering type.</p> <p>Valid Values:
* <code>"Partial Upfront" | "All Upfront" | "No Upfront" </code> </p>
*/
inline DescribeReservedDBInstancesRequest& WithOfferingType(const char* value) { SetOfferingType(value); return *this;}
/**
* <p>A value that indicates whether to show only those reservations that support
* Multi-AZ.</p>
*/
inline bool GetMultiAZ() const{ return m_multiAZ; }
/**
* <p>A value that indicates whether to show only those reservations that support
* Multi-AZ.</p>
*/
inline bool MultiAZHasBeenSet() const { return m_multiAZHasBeenSet; }
/**
* <p>A value that indicates whether to show only those reservations that support
* Multi-AZ.</p>
*/
inline void SetMultiAZ(bool value) { m_multiAZHasBeenSet = true; m_multiAZ = value; }
/**
* <p>A value that indicates whether to show only those reservations that support
* Multi-AZ.</p>
*/
inline DescribeReservedDBInstancesRequest& WithMultiAZ(bool value) { SetMultiAZ(value); return *this;}
/**
* <p>The lease identifier filter value. Specify this parameter to show only the
* reservation that matches the specified lease ID.</p> <p>AWS Support might
* request the lease ID for an issue related to a reserved DB instance.</p>
*/
inline const Aws::String& GetLeaseId() const{ return m_leaseId; }
/**
* <p>The lease identifier filter value. Specify this parameter to show only the
* reservation that matches the specified lease ID.</p> <p>AWS Support might
* request the lease ID for an issue related to a reserved DB instance.</p>
*/
inline bool LeaseIdHasBeenSet() const { return m_leaseIdHasBeenSet; }
/**
* <p>The lease identifier filter value. Specify this parameter to show only the
* reservation that matches the specified lease ID.</p> <p>AWS Support might
* request the lease ID for an issue related to a reserved DB instance.</p>
*/
inline void SetLeaseId(const Aws::String& value) { m_leaseIdHasBeenSet = true; m_leaseId = value; }
/**
* <p>The lease identifier filter value. Specify this parameter to show only the
* reservation that matches the specified lease ID.</p> <p>AWS Support might
* request the lease ID for an issue related to a reserved DB instance.</p>
*/
inline void SetLeaseId(Aws::String&& value) { m_leaseIdHasBeenSet = true; m_leaseId = std::move(value); }
/**
* <p>The lease identifier filter value. Specify this parameter to show only the
* reservation that matches the specified lease ID.</p> <p>AWS Support might
* request the lease ID for an issue related to a reserved DB instance.</p>
*/
inline void SetLeaseId(const char* value) { m_leaseIdHasBeenSet = true; m_leaseId.assign(value); }
/**
* <p>The lease identifier filter value. Specify this parameter to show only the
* reservation that matches the specified lease ID.</p> <p>AWS Support might
* request the lease ID for an issue related to a reserved DB instance.</p>
*/
inline DescribeReservedDBInstancesRequest& WithLeaseId(const Aws::String& value) { SetLeaseId(value); return *this;}
/**
* <p>The lease identifier filter value. Specify this parameter to show only the
* reservation that matches the specified lease ID.</p> <p>AWS Support might
* request the lease ID for an issue related to a reserved DB instance.</p>
*/
inline DescribeReservedDBInstancesRequest& WithLeaseId(Aws::String&& value) { SetLeaseId(std::move(value)); return *this;}
/**
* <p>The lease identifier filter value. Specify this parameter to show only the
* reservation that matches the specified lease ID.</p> <p>AWS Support might
* request the lease ID for an issue related to a reserved DB instance.</p>
*/
inline DescribeReservedDBInstancesRequest& WithLeaseId(const char* value) { SetLeaseId(value); return *this;}
/**
* <p>This parameter isn't currently supported.</p>
*/
inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
/**
* <p>This parameter isn't currently supported.</p>
*/
inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
/**
* <p>This parameter isn't currently supported.</p>
*/
inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
/**
* <p>This parameter isn't currently supported.</p>
*/
inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
/**
* <p>This parameter isn't currently supported.</p>
*/
inline DescribeReservedDBInstancesRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
/**
* <p>This parameter isn't currently supported.</p>
*/
inline DescribeReservedDBInstancesRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
/**
* <p>This parameter isn't currently supported.</p>
*/
inline DescribeReservedDBInstancesRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
/**
* <p>This parameter isn't currently supported.</p>
*/
inline DescribeReservedDBInstancesRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; }
/**
* <p> The maximum number of records to include in the response. If more than the
* <code>MaxRecords</code> value is available, a pagination token called a marker
* is included in the response so you can retrieve the remaining results. </p>
* <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100.</p>
*/
inline int GetMaxRecords() const{ return m_maxRecords; }
/**
* <p> The maximum number of records to include in the response. If more than the
* <code>MaxRecords</code> value is available, a pagination token called a marker
* is included in the response so you can retrieve the remaining results. </p>
* <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100.</p>
*/
inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
/**
* <p> The maximum number of records to include in the response. If more than the
* <code>MaxRecords</code> value is available, a pagination token called a marker
* is included in the response so you can retrieve the remaining results. </p>
* <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100.</p>
*/
inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
/**
* <p> The maximum number of records to include in the response. If more than the
* <code>MaxRecords</code> value is available, a pagination token called a marker
* is included in the response so you can retrieve the remaining results. </p>
* <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100.</p>
*/
inline DescribeReservedDBInstancesRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
/**
* <p> An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by <code>MaxRecords</code>. </p>
*/
inline const Aws::String& GetMarker() const{ return m_marker; }
/**
* <p> An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by <code>MaxRecords</code>. </p>
*/
inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
/**
* <p> An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by <code>MaxRecords</code>. </p>
*/
inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
/**
* <p> An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by <code>MaxRecords</code>. </p>
*/
inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
/**
* <p> An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by <code>MaxRecords</code>. </p>
*/
inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
/**
* <p> An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by <code>MaxRecords</code>. </p>
*/
inline DescribeReservedDBInstancesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
/**
* <p> An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by <code>MaxRecords</code>. </p>
*/
inline DescribeReservedDBInstancesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
/**
* <p> An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by <code>MaxRecords</code>. </p>
*/
inline DescribeReservedDBInstancesRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
private:
Aws::String m_reservedDBInstanceId;
bool m_reservedDBInstanceIdHasBeenSet;
Aws::String m_reservedDBInstancesOfferingId;
bool m_reservedDBInstancesOfferingIdHasBeenSet;
Aws::String m_dBInstanceClass;
bool m_dBInstanceClassHasBeenSet;
Aws::String m_duration;
bool m_durationHasBeenSet;
Aws::String m_productDescription;
bool m_productDescriptionHasBeenSet;
Aws::String m_offeringType;
bool m_offeringTypeHasBeenSet;
bool m_multiAZ;
bool m_multiAZHasBeenSet;
Aws::String m_leaseId;
bool m_leaseIdHasBeenSet;
Aws::Vector<Filter> m_filters;
bool m_filtersHasBeenSet;
int m_maxRecords;
bool m_maxRecordsHasBeenSet;
Aws::String m_marker;
bool m_markerHasBeenSet;
};
} // namespace Model
} // namespace RDS
} // namespace Aws