/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about an event. The event might be a push, pull request,
* scheduled request, or another type of event.See Also:
AWS
* API Reference
The name of the event. The possible names are pull_request
,
* workflow_dispatch
, schedule
, and push
*
The name of the event. The possible names are pull_request
,
* workflow_dispatch
, schedule
, and push
*
The name of the event. The possible names are pull_request
,
* workflow_dispatch
, schedule
, and push
*
The name of the event. The possible names are pull_request
,
* workflow_dispatch
, schedule
, and push
*
The name of the event. The possible names are pull_request
,
* workflow_dispatch
, schedule
, and push
*
The name of the event. The possible names are pull_request
,
* workflow_dispatch
, schedule
, and push
*
The name of the event. The possible names are pull_request
,
* workflow_dispatch
, schedule
, and push
*
The name of the event. The possible names are pull_request
,
* workflow_dispatch
, schedule
, and push
*
The state of an event. The state might be open, closed, or another state.
*/ inline const Aws::String& GetState() const{ return m_state; } /** *The state of an event. The state might be open, closed, or another state.
*/ inline bool StateHasBeenSet() const { return m_stateHasBeenSet; } /** *The state of an event. The state might be open, closed, or another state.
*/ inline void SetState(const Aws::String& value) { m_stateHasBeenSet = true; m_state = value; } /** *The state of an event. The state might be open, closed, or another state.
*/ inline void SetState(Aws::String&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *The state of an event. The state might be open, closed, or another state.
*/ inline void SetState(const char* value) { m_stateHasBeenSet = true; m_state.assign(value); } /** *The state of an event. The state might be open, closed, or another state.
*/ inline EventInfo& WithState(const Aws::String& value) { SetState(value); return *this;} /** *The state of an event. The state might be open, closed, or another state.
*/ inline EventInfo& WithState(Aws::String&& value) { SetState(std::move(value)); return *this;} /** *The state of an event. The state might be open, closed, or another state.
*/ inline EventInfo& WithState(const char* value) { SetState(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_state; bool m_stateHasBeenSet = false; }; } // namespace Model } // namespace CodeGuruReviewer } // namespace Aws