/** * 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 Http { class URI; } //namespace Http namespace Lambda { namespace Model { /** */ class ListCodeSigningConfigsRequest : public LambdaRequest { public: AWS_LAMBDA_API ListCodeSigningConfigsRequest(); // 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 "ListCodeSigningConfigs"; } AWS_LAMBDA_API Aws::String SerializePayload() const override; AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

Specify the pagination token that's returned by a previous request to * retrieve the next page of results.

*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *

Specify the pagination token that's returned by a previous request to * retrieve the next page of results.

*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *

Specify the pagination token that's returned by a previous request to * retrieve the next page of results.

*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *

Specify the pagination token that's returned by a previous request to * retrieve the next page of results.

*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *

Specify the pagination token that's returned by a previous request to * retrieve the next page of results.

*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *

Specify the pagination token that's returned by a previous request to * retrieve the next page of results.

*/ inline ListCodeSigningConfigsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *

Specify the pagination token that's returned by a previous request to * retrieve the next page of results.

*/ inline ListCodeSigningConfigsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *

Specify the pagination token that's returned by a previous request to * retrieve the next page of results.

*/ inline ListCodeSigningConfigsRequest& WithMarker(const char* value) { SetMarker(value); return *this;} /** *

Maximum number of items to return.

*/ inline int GetMaxItems() const{ return m_maxItems; } /** *

Maximum number of items to return.

*/ inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; } /** *

Maximum number of items to return.

*/ inline void SetMaxItems(int value) { m_maxItemsHasBeenSet = true; m_maxItems = value; } /** *

Maximum number of items to return.

*/ inline ListCodeSigningConfigsRequest& WithMaxItems(int value) { SetMaxItems(value); return *this;} private: Aws::String m_marker; bool m_markerHasBeenSet = false; int m_maxItems; bool m_maxItemsHasBeenSet = false; }; } // namespace Model } // namespace Lambda } // namespace Aws