/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a PollForThirdPartyJobs
* action.See Also:
AWS
* API Reference
Represents information about an action type.
*/ inline const ActionTypeId& GetActionTypeId() const{ return m_actionTypeId; } /** *Represents information about an action type.
*/ inline bool ActionTypeIdHasBeenSet() const { return m_actionTypeIdHasBeenSet; } /** *Represents information about an action type.
*/ inline void SetActionTypeId(const ActionTypeId& value) { m_actionTypeIdHasBeenSet = true; m_actionTypeId = value; } /** *Represents information about an action type.
*/ inline void SetActionTypeId(ActionTypeId&& value) { m_actionTypeIdHasBeenSet = true; m_actionTypeId = std::move(value); } /** *Represents information about an action type.
*/ inline PollForThirdPartyJobsRequest& WithActionTypeId(const ActionTypeId& value) { SetActionTypeId(value); return *this;} /** *Represents information about an action type.
*/ inline PollForThirdPartyJobsRequest& WithActionTypeId(ActionTypeId&& value) { SetActionTypeId(std::move(value)); return *this;} /** *The maximum number of jobs to return in a poll for jobs call.
*/ inline int GetMaxBatchSize() const{ return m_maxBatchSize; } /** *The maximum number of jobs to return in a poll for jobs call.
*/ inline bool MaxBatchSizeHasBeenSet() const { return m_maxBatchSizeHasBeenSet; } /** *The maximum number of jobs to return in a poll for jobs call.
*/ inline void SetMaxBatchSize(int value) { m_maxBatchSizeHasBeenSet = true; m_maxBatchSize = value; } /** *The maximum number of jobs to return in a poll for jobs call.
*/ inline PollForThirdPartyJobsRequest& WithMaxBatchSize(int value) { SetMaxBatchSize(value); return *this;} private: ActionTypeId m_actionTypeId; bool m_actionTypeIdHasBeenSet = false; int m_maxBatchSize; bool m_maxBatchSizeHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws