/** * 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 EventBridge { namespace Model { /** */ class ListPartnerEventSourcesRequest : public EventBridgeRequest { public: AWS_EVENTBRIDGE_API ListPartnerEventSourcesRequest(); // 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 "ListPartnerEventSources"; } AWS_EVENTBRIDGE_API Aws::String SerializePayload() const override; AWS_EVENTBRIDGE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

If you specify this, the results are limited to only those partner event * sources that start with the string you specify.

*/ inline const Aws::String& GetNamePrefix() const{ return m_namePrefix; } /** *

If you specify this, the results are limited to only those partner event * sources that start with the string you specify.

*/ inline bool NamePrefixHasBeenSet() const { return m_namePrefixHasBeenSet; } /** *

If you specify this, the results are limited to only those partner event * sources that start with the string you specify.

*/ inline void SetNamePrefix(const Aws::String& value) { m_namePrefixHasBeenSet = true; m_namePrefix = value; } /** *

If you specify this, the results are limited to only those partner event * sources that start with the string you specify.

*/ inline void SetNamePrefix(Aws::String&& value) { m_namePrefixHasBeenSet = true; m_namePrefix = std::move(value); } /** *

If you specify this, the results are limited to only those partner event * sources that start with the string you specify.

*/ inline void SetNamePrefix(const char* value) { m_namePrefixHasBeenSet = true; m_namePrefix.assign(value); } /** *

If you specify this, the results are limited to only those partner event * sources that start with the string you specify.

*/ inline ListPartnerEventSourcesRequest& WithNamePrefix(const Aws::String& value) { SetNamePrefix(value); return *this;} /** *

If you specify this, the results are limited to only those partner event * sources that start with the string you specify.

*/ inline ListPartnerEventSourcesRequest& WithNamePrefix(Aws::String&& value) { SetNamePrefix(std::move(value)); return *this;} /** *

If you specify this, the results are limited to only those partner event * sources that start with the string you specify.

*/ inline ListPartnerEventSourcesRequest& WithNamePrefix(const char* value) { SetNamePrefix(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 ListPartnerEventSourcesRequest& 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 ListPartnerEventSourcesRequest& 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 ListPartnerEventSourcesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

pecifying 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; } /** *

pecifying 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; } /** *

pecifying 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; } /** *

pecifying 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 ListPartnerEventSourcesRequest& WithLimit(int value) { SetLimit(value); return *this;} private: Aws::String m_namePrefix; bool m_namePrefixHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_limit; bool m_limitHasBeenSet = false; }; } // namespace Model } // namespace EventBridge } // namespace Aws