/** * 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 ListFunctionsByCodeSigningConfigRequest : public LambdaRequest { public: AWS_LAMBDA_API ListFunctionsByCodeSigningConfigRequest(); // 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 "ListFunctionsByCodeSigningConfig"; } AWS_LAMBDA_API Aws::String SerializePayload() const override; AWS_LAMBDA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline const Aws::String& GetCodeSigningConfigArn() const{ return m_codeSigningConfigArn; } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline bool CodeSigningConfigArnHasBeenSet() const { return m_codeSigningConfigArnHasBeenSet; } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline void SetCodeSigningConfigArn(const Aws::String& value) { m_codeSigningConfigArnHasBeenSet = true; m_codeSigningConfigArn = value; } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline void SetCodeSigningConfigArn(Aws::String&& value) { m_codeSigningConfigArnHasBeenSet = true; m_codeSigningConfigArn = std::move(value); } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline void SetCodeSigningConfigArn(const char* value) { m_codeSigningConfigArnHasBeenSet = true; m_codeSigningConfigArn.assign(value); } /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline ListFunctionsByCodeSigningConfigRequest& WithCodeSigningConfigArn(const Aws::String& value) { SetCodeSigningConfigArn(value); return *this;} /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline ListFunctionsByCodeSigningConfigRequest& WithCodeSigningConfigArn(Aws::String&& value) { SetCodeSigningConfigArn(std::move(value)); return *this;} /** *

The The Amazon Resource Name (ARN) of the code signing configuration.

*/ inline ListFunctionsByCodeSigningConfigRequest& WithCodeSigningConfigArn(const char* value) { SetCodeSigningConfigArn(value); return *this;} /** *

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 ListFunctionsByCodeSigningConfigRequest& 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 ListFunctionsByCodeSigningConfigRequest& 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 ListFunctionsByCodeSigningConfigRequest& 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 ListFunctionsByCodeSigningConfigRequest& WithMaxItems(int value) { SetMaxItems(value); return *this;} private: Aws::String m_codeSigningConfigArn; bool m_codeSigningConfigArnHasBeenSet = false; Aws::String m_marker; bool m_markerHasBeenSet = false; int m_maxItems; bool m_maxItemsHasBeenSet = false; }; } // namespace Model } // namespace Lambda } // namespace Aws