212 lines
9.3 KiB
C
212 lines
9.3 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/elasticache/ElastiCache_EXPORTS.h>
|
|||
|
|
#include <aws/elasticache/ElastiCacheRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace ElastiCache
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Represents the input of a <code>DescribeReplicationGroups</code>
|
|||
|
|
* operation.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeReplicationGroupsMessage">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_ELASTICACHE_API DescribeReplicationGroupsRequest : public ElastiCacheRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DescribeReplicationGroupsRequest();
|
|||
|
|
|
|||
|
|
// 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 "DescribeReplicationGroups"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
protected:
|
|||
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier for the replication group to be described. This parameter is
|
|||
|
|
* not case sensitive.</p> <p>If you do not specify this parameter, information
|
|||
|
|
* about all replication groups is returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetReplicationGroupId() const{ return m_replicationGroupId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier for the replication group to be described. This parameter is
|
|||
|
|
* not case sensitive.</p> <p>If you do not specify this parameter, information
|
|||
|
|
* about all replication groups is returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ReplicationGroupIdHasBeenSet() const { return m_replicationGroupIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier for the replication group to be described. This parameter is
|
|||
|
|
* not case sensitive.</p> <p>If you do not specify this parameter, information
|
|||
|
|
* about all replication groups is returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetReplicationGroupId(const Aws::String& value) { m_replicationGroupIdHasBeenSet = true; m_replicationGroupId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier for the replication group to be described. This parameter is
|
|||
|
|
* not case sensitive.</p> <p>If you do not specify this parameter, information
|
|||
|
|
* about all replication groups is returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetReplicationGroupId(Aws::String&& value) { m_replicationGroupIdHasBeenSet = true; m_replicationGroupId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier for the replication group to be described. This parameter is
|
|||
|
|
* not case sensitive.</p> <p>If you do not specify this parameter, information
|
|||
|
|
* about all replication groups is returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetReplicationGroupId(const char* value) { m_replicationGroupIdHasBeenSet = true; m_replicationGroupId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier for the replication group to be described. This parameter is
|
|||
|
|
* not case sensitive.</p> <p>If you do not specify this parameter, information
|
|||
|
|
* about all replication groups is returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeReplicationGroupsRequest& WithReplicationGroupId(const Aws::String& value) { SetReplicationGroupId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier for the replication group to be described. This parameter is
|
|||
|
|
* not case sensitive.</p> <p>If you do not specify this parameter, information
|
|||
|
|
* about all replication groups is returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeReplicationGroupsRequest& WithReplicationGroupId(Aws::String&& value) { SetReplicationGroupId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier for the replication group to be described. This parameter is
|
|||
|
|
* not case sensitive.</p> <p>If you do not specify this parameter, information
|
|||
|
|
* about all replication groups is returned.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeReplicationGroupsRequest& WithReplicationGroupId(const char* value) { SetReplicationGroupId(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 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 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 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 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 DescribeReplicationGroupsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An optional marker returned from a prior request. Use this marker for
|
|||
|
|
* pagination of results from this operation. 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 marker returned from a prior request. Use this marker for
|
|||
|
|
* pagination of results from this operation. 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 marker returned from a prior request. Use this marker for
|
|||
|
|
* pagination of results from this operation. 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 marker returned from a prior request. Use this marker for
|
|||
|
|
* pagination of results from this operation. 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 marker returned from a prior request. Use this marker for
|
|||
|
|
* pagination of results from this operation. 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 marker returned from a prior request. Use this marker for
|
|||
|
|
* pagination of results from this operation. If this parameter is specified, the
|
|||
|
|
* response includes only records beyond the marker, up to the value specified by
|
|||
|
|
* <code>MaxRecords</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeReplicationGroupsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An optional marker returned from a prior request. Use this marker for
|
|||
|
|
* pagination of results from this operation. If this parameter is specified, the
|
|||
|
|
* response includes only records beyond the marker, up to the value specified by
|
|||
|
|
* <code>MaxRecords</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeReplicationGroupsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>An optional marker returned from a prior request. Use this marker for
|
|||
|
|
* pagination of results from this operation. If this parameter is specified, the
|
|||
|
|
* response includes only records beyond the marker, up to the value specified by
|
|||
|
|
* <code>MaxRecords</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeReplicationGroupsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_replicationGroupId;
|
|||
|
|
bool m_replicationGroupIdHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_maxRecords;
|
|||
|
|
bool m_maxRecordsHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_marker;
|
|||
|
|
bool m_markerHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ElastiCache
|
|||
|
|
} // namespace Aws
|