/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides the details of the ActivityTaskCancelRequested
* event.See Also:
AWS
* API Reference
The ID of the DecisionTaskCompleted
event corresponding to the
* decision task that resulted in the RequestCancelActivityTask
* decision for this cancellation request. This information can be useful for
* diagnosing problems by tracing back the chain of events leading up to this
* event.
The ID of the DecisionTaskCompleted
event corresponding to the
* decision task that resulted in the RequestCancelActivityTask
* decision for this cancellation request. This information can be useful for
* diagnosing problems by tracing back the chain of events leading up to this
* event.
The ID of the DecisionTaskCompleted
event corresponding to the
* decision task that resulted in the RequestCancelActivityTask
* decision for this cancellation request. This information can be useful for
* diagnosing problems by tracing back the chain of events leading up to this
* event.
The ID of the DecisionTaskCompleted
event corresponding to the
* decision task that resulted in the RequestCancelActivityTask
* decision for this cancellation request. This information can be useful for
* diagnosing problems by tracing back the chain of events leading up to this
* event.
The unique ID of the task.
*/ inline const Aws::String& GetActivityId() const{ return m_activityId; } /** *The unique ID of the task.
*/ inline bool ActivityIdHasBeenSet() const { return m_activityIdHasBeenSet; } /** *The unique ID of the task.
*/ inline void SetActivityId(const Aws::String& value) { m_activityIdHasBeenSet = true; m_activityId = value; } /** *The unique ID of the task.
*/ inline void SetActivityId(Aws::String&& value) { m_activityIdHasBeenSet = true; m_activityId = std::move(value); } /** *The unique ID of the task.
*/ inline void SetActivityId(const char* value) { m_activityIdHasBeenSet = true; m_activityId.assign(value); } /** *The unique ID of the task.
*/ inline ActivityTaskCancelRequestedEventAttributes& WithActivityId(const Aws::String& value) { SetActivityId(value); return *this;} /** *The unique ID of the task.
*/ inline ActivityTaskCancelRequestedEventAttributes& WithActivityId(Aws::String&& value) { SetActivityId(std::move(value)); return *this;} /** *The unique ID of the task.
*/ inline ActivityTaskCancelRequestedEventAttributes& WithActivityId(const char* value) { SetActivityId(value); return *this;} private: long long m_decisionTaskCompletedEventId; bool m_decisionTaskCompletedEventIdHasBeenSet = false; Aws::String m_activityId; bool m_activityIdHasBeenSet = false; }; } // namespace Model } // namespace SWF } // namespace Aws