/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies configuration properties of a notification.See
* Also:
AWS
* API Reference
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