/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace DAX { namespace Model { /** */ class DescribeSubnetGroupsRequest : public DAXRequest { public: AWS_DAX_API DescribeSubnetGroupsRequest(); // 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 "DescribeSubnetGroups"; } AWS_DAX_API Aws::String SerializePayload() const override; AWS_DAX_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the subnet group.

*/ inline const Aws::Vector& GetSubnetGroupNames() const{ return m_subnetGroupNames; } /** *

The name of the subnet group.

*/ inline bool SubnetGroupNamesHasBeenSet() const { return m_subnetGroupNamesHasBeenSet; } /** *

The name of the subnet group.

*/ inline void SetSubnetGroupNames(const Aws::Vector& value) { m_subnetGroupNamesHasBeenSet = true; m_subnetGroupNames = value; } /** *

The name of the subnet group.

*/ inline void SetSubnetGroupNames(Aws::Vector&& value) { m_subnetGroupNamesHasBeenSet = true; m_subnetGroupNames = std::move(value); } /** *

The name of the subnet group.

*/ inline DescribeSubnetGroupsRequest& WithSubnetGroupNames(const Aws::Vector& value) { SetSubnetGroupNames(value); return *this;} /** *

The name of the subnet group.

*/ inline DescribeSubnetGroupsRequest& WithSubnetGroupNames(Aws::Vector&& value) { SetSubnetGroupNames(std::move(value)); return *this;} /** *

The name of the subnet group.

*/ inline DescribeSubnetGroupsRequest& AddSubnetGroupNames(const Aws::String& value) { m_subnetGroupNamesHasBeenSet = true; m_subnetGroupNames.push_back(value); return *this; } /** *

The name of the subnet group.

*/ inline DescribeSubnetGroupsRequest& AddSubnetGroupNames(Aws::String&& value) { m_subnetGroupNamesHasBeenSet = true; m_subnetGroupNames.push_back(std::move(value)); return *this; } /** *

The name of the subnet group.

*/ inline DescribeSubnetGroupsRequest& AddSubnetGroupNames(const char* value) { m_subnetGroupNamesHasBeenSet = true; m_subnetGroupNames.push_back(value); return *this; } /** *

The maximum number of results to include in the response. If more results * exist than the specified MaxResults value, a token is included in * the response so that the remaining results can be retrieved.

The value * for MaxResults must be between 20 and 100.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of results to include in the response. If more results * exist than the specified MaxResults value, a token is included in * the response so that the remaining results can be retrieved.

The value * for MaxResults must be between 20 and 100.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of results to include in the response. If more results * exist than the specified MaxResults value, a token is included in * the response so that the remaining results can be retrieved.

The value * for MaxResults must be between 20 and 100.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of results to include in the response. If more results * exist than the specified MaxResults value, a token is included in * the response so that the remaining results can be retrieved.

The value * for MaxResults must be between 20 and 100.

*/ inline DescribeSubnetGroupsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline DescribeSubnetGroupsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline DescribeSubnetGroupsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

An optional token returned from a prior request. Use this token for * pagination of results from this action. If this parameter is specified, the * response includes only results beyond the token, up to the value specified by * MaxResults.

*/ inline DescribeSubnetGroupsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_subnetGroupNames; bool m_subnetGroupNamesHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace DAX } // namespace Aws