This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-glue/include/aws/glue/model/TriggerNodeDetails.h

80 lines
2.1 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/glue/Glue_EXPORTS.h>
#include <aws/glue/model/Trigger.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Glue
{
namespace Model
{
/**
* <p>The details of a Trigger node present in the workflow.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TriggerNodeDetails">AWS
* API Reference</a></p>
*/
class AWS_GLUE_API TriggerNodeDetails
{
public:
TriggerNodeDetails();
TriggerNodeDetails(Aws::Utils::Json::JsonView jsonValue);
TriggerNodeDetails& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The information of the trigger represented by the trigger node.</p>
*/
inline const Trigger& GetTrigger() const{ return m_trigger; }
/**
* <p>The information of the trigger represented by the trigger node.</p>
*/
inline bool TriggerHasBeenSet() const { return m_triggerHasBeenSet; }
/**
* <p>The information of the trigger represented by the trigger node.</p>
*/
inline void SetTrigger(const Trigger& value) { m_triggerHasBeenSet = true; m_trigger = value; }
/**
* <p>The information of the trigger represented by the trigger node.</p>
*/
inline void SetTrigger(Trigger&& value) { m_triggerHasBeenSet = true; m_trigger = std::move(value); }
/**
* <p>The information of the trigger represented by the trigger node.</p>
*/
inline TriggerNodeDetails& WithTrigger(const Trigger& value) { SetTrigger(value); return *this;}
/**
* <p>The information of the trigger represented by the trigger node.</p>
*/
inline TriggerNodeDetails& WithTrigger(Trigger&& value) { SetTrigger(std::move(value)); return *this;}
private:
Trigger m_trigger;
bool m_triggerHasBeenSet;
};
} // namespace Model
} // namespace Glue
} // namespace Aws