/** * 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 CloudWatchEvents { namespace Model { /** */ class ListPartnerEventSourceAccountsRequest : public CloudWatchEventsRequest { public: AWS_CLOUDWATCHEVENTS_API ListPartnerEventSourceAccountsRequest(); // 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 "ListPartnerEventSourceAccounts"; } AWS_CLOUDWATCHEVENTS_API Aws::String SerializePayload() const override; AWS_CLOUDWATCHEVENTS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the partner event source to display account information * about.

*/ inline const Aws::String& GetEventSourceName() const{ return m_eventSourceName; } /** *

The name of the partner event source to display account information * about.

*/ inline bool EventSourceNameHasBeenSet() const { return m_eventSourceNameHasBeenSet; } /** *

The name of the partner event source to display account information * about.

*/ inline void SetEventSourceName(const Aws::String& value) { m_eventSourceNameHasBeenSet = true; m_eventSourceName = value; } /** *

The name of the partner event source to display account information * about.

*/ inline void SetEventSourceName(Aws::String&& value) { m_eventSourceNameHasBeenSet = true; m_eventSourceName = std::move(value); } /** *

The name of the partner event source to display account information * about.

*/ inline void SetEventSourceName(const char* value) { m_eventSourceNameHasBeenSet = true; m_eventSourceName.assign(value); } /** *

The name of the partner event source to display account information * about.

*/ inline ListPartnerEventSourceAccountsRequest& WithEventSourceName(const Aws::String& value) { SetEventSourceName(value); return *this;} /** *

The name of the partner event source to display account information * about.

*/ inline ListPartnerEventSourceAccountsRequest& WithEventSourceName(Aws::String&& value) { SetEventSourceName(std::move(value)); return *this;} /** *

The name of the partner event source to display account information * about.

*/ inline ListPartnerEventSourceAccountsRequest& WithEventSourceName(const char* value) { SetEventSourceName(value); return *this;} /** *

The token returned by a previous call to this operation. Specifying this * retrieves the next set of results.

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

The token returned by a previous call to this operation. Specifying this * retrieves the next set of results.

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

The token returned by a previous call to this operation. Specifying this * retrieves the next set of results.

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

The token returned by a previous call to this operation. Specifying this * retrieves the next set of results.

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

The token returned by a previous call to this operation. Specifying this * retrieves the next set of results.

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

The token returned by a previous call to this operation. Specifying this * retrieves the next set of results.

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

The token returned by a previous call to this operation. Specifying this * retrieves the next set of results.

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

The token returned by a previous call to this operation. Specifying this * retrieves the next set of results.

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

Specifying this limits the number of results returned by this operation. The * operation also returns a NextToken which you can use in a subsequent operation * to retrieve the next set of results.

*/ inline int GetLimit() const{ return m_limit; } /** *

Specifying this limits the number of results returned by this operation. The * operation also returns a NextToken which you can use in a subsequent operation * to retrieve the next set of results.

*/ inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; } /** *

Specifying this limits the number of results returned by this operation. The * operation also returns a NextToken which you can use in a subsequent operation * to retrieve the next set of results.

*/ inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; } /** *

Specifying this limits the number of results returned by this operation. The * operation also returns a NextToken which you can use in a subsequent operation * to retrieve the next set of results.

*/ inline ListPartnerEventSourceAccountsRequest& WithLimit(int value) { SetLimit(value); return *this;} private: Aws::String m_eventSourceName; bool m_eventSourceNameHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_limit; bool m_limitHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchEvents } // namespace Aws