/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Glue { namespace Model { /** *

Specifies configuration properties of a notification.

See * Also:

AWS * API Reference

*/ class NotificationProperty { public: AWS_GLUE_API NotificationProperty(); AWS_GLUE_API NotificationProperty(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API NotificationProperty& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

After a job run starts, the number of minutes to wait before sending a job * run delay notification.

*/ inline int GetNotifyDelayAfter() const{ return m_notifyDelayAfter; } /** *

After a job run starts, the number of minutes to wait before sending a job * run delay notification.

*/ inline bool NotifyDelayAfterHasBeenSet() const { return m_notifyDelayAfterHasBeenSet; } /** *

After a job run starts, the number of minutes to wait before sending a job * run delay notification.

*/ inline void SetNotifyDelayAfter(int value) { m_notifyDelayAfterHasBeenSet = true; m_notifyDelayAfter = value; } /** *

After a job run starts, the number of minutes to wait before sending a job * run delay notification.

*/ inline NotificationProperty& WithNotifyDelayAfter(int value) { SetNotifyDelayAfter(value); return *this;} private: int m_notifyDelayAfter; bool m_notifyDelayAfterHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws