/** * 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 Appflow { namespace Model { /** */ class DescribeFlowExecutionRecordsRequest : public AppflowRequest { public: AWS_APPFLOW_API DescribeFlowExecutionRecordsRequest(); // 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 "DescribeFlowExecutionRecords"; } AWS_APPFLOW_API Aws::String SerializePayload() const override; /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline const Aws::String& GetFlowName() const{ return m_flowName; } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline bool FlowNameHasBeenSet() const { return m_flowNameHasBeenSet; } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline void SetFlowName(const Aws::String& value) { m_flowNameHasBeenSet = true; m_flowName = value; } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline void SetFlowName(Aws::String&& value) { m_flowNameHasBeenSet = true; m_flowName = std::move(value); } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline void SetFlowName(const char* value) { m_flowNameHasBeenSet = true; m_flowName.assign(value); } /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline DescribeFlowExecutionRecordsRequest& WithFlowName(const Aws::String& value) { SetFlowName(value); return *this;} /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline DescribeFlowExecutionRecordsRequest& WithFlowName(Aws::String&& value) { SetFlowName(std::move(value)); return *this;} /** *

The specified name of the flow. Spaces are not allowed. Use underscores (_) * or hyphens (-) only.

*/ inline DescribeFlowExecutionRecordsRequest& WithFlowName(const char* value) { SetFlowName(value); return *this;} /** *

Specifies the maximum number of items that should be returned in the result * set. The default for maxResults is 20 (for all paginated API * operations).

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

Specifies the maximum number of items that should be returned in the result * set. The default for maxResults is 20 (for all paginated API * operations).

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

Specifies the maximum number of items that should be returned in the result * set. The default for maxResults is 20 (for all paginated API * operations).

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

Specifies the maximum number of items that should be returned in the result * set. The default for maxResults is 20 (for all paginated API * operations).

*/ inline DescribeFlowExecutionRecordsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

*/ inline DescribeFlowExecutionRecordsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_flowName; bool m_flowNameHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws