/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Detective { namespace Model { /** */ class ListMembersRequest : public DetectiveRequest { public: AWS_DETECTIVE_API ListMembersRequest(); // 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 "ListMembers"; } AWS_DETECTIVE_API Aws::String SerializePayload() const override; /** *

The ARN of the behavior graph for which to retrieve the list of member * accounts.

*/ inline const Aws::String& GetGraphArn() const{ return m_graphArn; } /** *

The ARN of the behavior graph for which to retrieve the list of member * accounts.

*/ inline bool GraphArnHasBeenSet() const { return m_graphArnHasBeenSet; } /** *

The ARN of the behavior graph for which to retrieve the list of member * accounts.

*/ inline void SetGraphArn(const Aws::String& value) { m_graphArnHasBeenSet = true; m_graphArn = value; } /** *

The ARN of the behavior graph for which to retrieve the list of member * accounts.

*/ inline void SetGraphArn(Aws::String&& value) { m_graphArnHasBeenSet = true; m_graphArn = std::move(value); } /** *

The ARN of the behavior graph for which to retrieve the list of member * accounts.

*/ inline void SetGraphArn(const char* value) { m_graphArnHasBeenSet = true; m_graphArn.assign(value); } /** *

The ARN of the behavior graph for which to retrieve the list of member * accounts.

*/ inline ListMembersRequest& WithGraphArn(const Aws::String& value) { SetGraphArn(value); return *this;} /** *

The ARN of the behavior graph for which to retrieve the list of member * accounts.

*/ inline ListMembersRequest& WithGraphArn(Aws::String&& value) { SetGraphArn(std::move(value)); return *this;} /** *

The ARN of the behavior graph for which to retrieve the list of member * accounts.

*/ inline ListMembersRequest& WithGraphArn(const char* value) { SetGraphArn(value); return *this;} /** *

For requests to retrieve the next page of member account results, the * pagination token that was returned with the previous page of results. The * initial request does not include a pagination token.

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

For requests to retrieve the next page of member account results, the * pagination token that was returned with the previous page of results. The * initial request does not include a pagination token.

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

For requests to retrieve the next page of member account results, the * pagination token that was returned with the previous page of results. The * initial request does not include a pagination token.

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

For requests to retrieve the next page of member account results, the * pagination token that was returned with the previous page of results. The * initial request does not include a pagination token.

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

For requests to retrieve the next page of member account results, the * pagination token that was returned with the previous page of results. The * initial request does not include a pagination token.

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

For requests to retrieve the next page of member account results, the * pagination token that was returned with the previous page of results. The * initial request does not include a pagination token.

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

For requests to retrieve the next page of member account results, the * pagination token that was returned with the previous page of results. The * initial request does not include a pagination token.

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

For requests to retrieve the next page of member account results, the * pagination token that was returned with the previous page of results. The * initial request does not include a pagination token.

*/ inline ListMembersRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of member accounts to include in the response. The total * must be less than the overall limit on the number of results to return, which is * currently 200.

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

The maximum number of member accounts to include in the response. The total * must be less than the overall limit on the number of results to return, which is * currently 200.

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

The maximum number of member accounts to include in the response. The total * must be less than the overall limit on the number of results to return, which is * currently 200.

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

The maximum number of member accounts to include in the response. The total * must be less than the overall limit on the number of results to return, which is * currently 200.

*/ inline ListMembersRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_graphArn; bool m_graphArnHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace Detective } // namespace Aws