418 lines
17 KiB
C++
418 lines
17 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/docdb/DocDB_EXPORTS.h>
|
|
#include <aws/docdb/DocDBRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/docdb/model/Filter.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace DocDB
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Represents the input to
|
|
* <a>DescribeOrderableDBInstanceOptions</a>.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DescribeOrderableDBInstanceOptionsMessage">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_DOCDB_API DescribeOrderableDBInstanceOptionsRequest : public DocDBRequest
|
|
{
|
|
public:
|
|
DescribeOrderableDBInstanceOptionsRequest();
|
|
|
|
// 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 "DescribeOrderableDBInstanceOptions"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the engine to retrieve instance options for.</p>
|
|
*/
|
|
inline const Aws::String& GetEngine() const{ return m_engine; }
|
|
|
|
/**
|
|
* <p>The name of the engine to retrieve instance options for.</p>
|
|
*/
|
|
inline bool EngineHasBeenSet() const { return m_engineHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the engine to retrieve instance options for.</p>
|
|
*/
|
|
inline void SetEngine(const Aws::String& value) { m_engineHasBeenSet = true; m_engine = value; }
|
|
|
|
/**
|
|
* <p>The name of the engine to retrieve instance options for.</p>
|
|
*/
|
|
inline void SetEngine(Aws::String&& value) { m_engineHasBeenSet = true; m_engine = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the engine to retrieve instance options for.</p>
|
|
*/
|
|
inline void SetEngine(const char* value) { m_engineHasBeenSet = true; m_engine.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the engine to retrieve instance options for.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithEngine(const Aws::String& value) { SetEngine(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the engine to retrieve instance options for.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithEngine(Aws::String&& value) { SetEngine(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the engine to retrieve instance options for.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithEngine(const char* value) { SetEngine(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The engine version filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified engine version.</p>
|
|
*/
|
|
inline const Aws::String& GetEngineVersion() const{ return m_engineVersion; }
|
|
|
|
/**
|
|
* <p>The engine version filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified engine version.</p>
|
|
*/
|
|
inline bool EngineVersionHasBeenSet() const { return m_engineVersionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The engine version filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified engine version.</p>
|
|
*/
|
|
inline void SetEngineVersion(const Aws::String& value) { m_engineVersionHasBeenSet = true; m_engineVersion = value; }
|
|
|
|
/**
|
|
* <p>The engine version filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified engine version.</p>
|
|
*/
|
|
inline void SetEngineVersion(Aws::String&& value) { m_engineVersionHasBeenSet = true; m_engineVersion = std::move(value); }
|
|
|
|
/**
|
|
* <p>The engine version filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified engine version.</p>
|
|
*/
|
|
inline void SetEngineVersion(const char* value) { m_engineVersionHasBeenSet = true; m_engineVersion.assign(value); }
|
|
|
|
/**
|
|
* <p>The engine version filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified engine version.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithEngineVersion(const Aws::String& value) { SetEngineVersion(value); return *this;}
|
|
|
|
/**
|
|
* <p>The engine version filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified engine version.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithEngineVersion(Aws::String&& value) { SetEngineVersion(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The engine version filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified engine version.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithEngineVersion(const char* value) { SetEngineVersion(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The instance class filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified instance class.</p>
|
|
*/
|
|
inline const Aws::String& GetDBInstanceClass() const{ return m_dBInstanceClass; }
|
|
|
|
/**
|
|
* <p>The instance class filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified instance class.</p>
|
|
*/
|
|
inline bool DBInstanceClassHasBeenSet() const { return m_dBInstanceClassHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The instance class filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified instance class.</p>
|
|
*/
|
|
inline void SetDBInstanceClass(const Aws::String& value) { m_dBInstanceClassHasBeenSet = true; m_dBInstanceClass = value; }
|
|
|
|
/**
|
|
* <p>The instance class filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified instance class.</p>
|
|
*/
|
|
inline void SetDBInstanceClass(Aws::String&& value) { m_dBInstanceClassHasBeenSet = true; m_dBInstanceClass = std::move(value); }
|
|
|
|
/**
|
|
* <p>The instance class filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified instance class.</p>
|
|
*/
|
|
inline void SetDBInstanceClass(const char* value) { m_dBInstanceClassHasBeenSet = true; m_dBInstanceClass.assign(value); }
|
|
|
|
/**
|
|
* <p>The instance class filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified instance class.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithDBInstanceClass(const Aws::String& value) { SetDBInstanceClass(value); return *this;}
|
|
|
|
/**
|
|
* <p>The instance class filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified instance class.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithDBInstanceClass(Aws::String&& value) { SetDBInstanceClass(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The instance class filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified instance class.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithDBInstanceClass(const char* value) { SetDBInstanceClass(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The license model filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified license model.</p>
|
|
*/
|
|
inline const Aws::String& GetLicenseModel() const{ return m_licenseModel; }
|
|
|
|
/**
|
|
* <p>The license model filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified license model.</p>
|
|
*/
|
|
inline bool LicenseModelHasBeenSet() const { return m_licenseModelHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The license model filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified license model.</p>
|
|
*/
|
|
inline void SetLicenseModel(const Aws::String& value) { m_licenseModelHasBeenSet = true; m_licenseModel = value; }
|
|
|
|
/**
|
|
* <p>The license model filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified license model.</p>
|
|
*/
|
|
inline void SetLicenseModel(Aws::String&& value) { m_licenseModelHasBeenSet = true; m_licenseModel = std::move(value); }
|
|
|
|
/**
|
|
* <p>The license model filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified license model.</p>
|
|
*/
|
|
inline void SetLicenseModel(const char* value) { m_licenseModelHasBeenSet = true; m_licenseModel.assign(value); }
|
|
|
|
/**
|
|
* <p>The license model filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified license model.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithLicenseModel(const Aws::String& value) { SetLicenseModel(value); return *this;}
|
|
|
|
/**
|
|
* <p>The license model filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified license model.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithLicenseModel(Aws::String&& value) { SetLicenseModel(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The license model filter value. Specify this parameter to show only the
|
|
* available offerings that match the specified license model.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithLicenseModel(const char* value) { SetLicenseModel(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The virtual private cloud (VPC) filter value. Specify this parameter to show
|
|
* only the available VPC or non-VPC offerings.</p>
|
|
*/
|
|
inline bool GetVpc() const{ return m_vpc; }
|
|
|
|
/**
|
|
* <p>The virtual private cloud (VPC) filter value. Specify this parameter to show
|
|
* only the available VPC or non-VPC offerings.</p>
|
|
*/
|
|
inline bool VpcHasBeenSet() const { return m_vpcHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The virtual private cloud (VPC) filter value. Specify this parameter to show
|
|
* only the available VPC or non-VPC offerings.</p>
|
|
*/
|
|
inline void SetVpc(bool value) { m_vpcHasBeenSet = true; m_vpc = value; }
|
|
|
|
/**
|
|
* <p>The virtual private cloud (VPC) filter value. Specify this parameter to show
|
|
* only the available VPC or non-VPC offerings.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithVpc(bool value) { SetVpc(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>This parameter is not currently supported.</p>
|
|
*/
|
|
inline const Aws::Vector<Filter>& GetFilters() const{ return m_filters; }
|
|
|
|
/**
|
|
* <p>This parameter is not currently supported.</p>
|
|
*/
|
|
inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; }
|
|
|
|
/**
|
|
* <p>This parameter is not currently supported.</p>
|
|
*/
|
|
inline void SetFilters(const Aws::Vector<Filter>& value) { m_filtersHasBeenSet = true; m_filters = value; }
|
|
|
|
/**
|
|
* <p>This parameter is not currently supported.</p>
|
|
*/
|
|
inline void SetFilters(Aws::Vector<Filter>&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); }
|
|
|
|
/**
|
|
* <p>This parameter is not currently supported.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithFilters(const Aws::Vector<Filter>& value) { SetFilters(value); return *this;}
|
|
|
|
/**
|
|
* <p>This parameter is not currently supported.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& WithFilters(Aws::Vector<Filter>&& value) { SetFilters(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>This parameter is not currently supported.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>This parameter is not currently supported.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& 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 records
|
|
* exist than the specified <code>MaxRecords</code> value, a pagination token
|
|
* (marker) is included in the response so that the remaining results can be
|
|
* retrieved.</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 records
|
|
* exist than the specified <code>MaxRecords</code> value, a pagination token
|
|
* (marker) is included in the response so that the remaining results can be
|
|
* retrieved.</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 records
|
|
* exist than the specified <code>MaxRecords</code> value, a pagination token
|
|
* (marker) is included in the response so that the remaining results can be
|
|
* retrieved.</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 records
|
|
* exist than the specified <code>MaxRecords</code> value, a pagination token
|
|
* (marker) is included in the response so that the remaining results can be
|
|
* retrieved.</p> <p>Default: 100</p> <p>Constraints: Minimum 20, maximum 100.</p>
|
|
*/
|
|
inline DescribeOrderableDBInstanceOptionsRequest& 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 DescribeOrderableDBInstanceOptionsRequest& 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 DescribeOrderableDBInstanceOptionsRequest& 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 DescribeOrderableDBInstanceOptionsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_engine;
|
|
bool m_engineHasBeenSet;
|
|
|
|
Aws::String m_engineVersion;
|
|
bool m_engineVersionHasBeenSet;
|
|
|
|
Aws::String m_dBInstanceClass;
|
|
bool m_dBInstanceClassHasBeenSet;
|
|
|
|
Aws::String m_licenseModel;
|
|
bool m_licenseModelHasBeenSet;
|
|
|
|
bool m_vpc;
|
|
bool m_vpcHasBeenSet;
|
|
|
|
Aws::Vector<Filter> m_filters;
|
|
bool m_filtersHasBeenSet;
|
|
|
|
int m_maxRecords;
|
|
bool m_maxRecordsHasBeenSet;
|
|
|
|
Aws::String m_marker;
|
|
bool m_markerHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DocDB
|
|
} // namespace Aws
|