/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the status of validating an application.See Also:
* AWS
* API Reference
The ID of the validation.
*/ inline const Aws::String& GetValidationId() const{ return m_validationId; } /** *The ID of the validation.
*/ inline bool ValidationIdHasBeenSet() const { return m_validationIdHasBeenSet; } /** *The ID of the validation.
*/ inline void SetValidationId(const Aws::String& value) { m_validationIdHasBeenSet = true; m_validationId = value; } /** *The ID of the validation.
*/ inline void SetValidationId(Aws::String&& value) { m_validationIdHasBeenSet = true; m_validationId = std::move(value); } /** *The ID of the validation.
*/ inline void SetValidationId(const char* value) { m_validationIdHasBeenSet = true; m_validationId.assign(value); } /** *The ID of the validation.
*/ inline NotificationContext& WithValidationId(const Aws::String& value) { SetValidationId(value); return *this;} /** *The ID of the validation.
*/ inline NotificationContext& WithValidationId(Aws::String&& value) { SetValidationId(std::move(value)); return *this;} /** *The ID of the validation.
*/ inline NotificationContext& WithValidationId(const char* value) { SetValidationId(value); return *this;} /** *The status of the validation.
*/ inline const ValidationStatus& GetStatus() const{ return m_status; } /** *The status of the validation.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The status of the validation.
*/ inline void SetStatus(const ValidationStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *The status of the validation.
*/ inline void SetStatus(ValidationStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The status of the validation.
*/ inline NotificationContext& WithStatus(const ValidationStatus& value) { SetStatus(value); return *this;} /** *The status of the validation.
*/ inline NotificationContext& WithStatus(ValidationStatus&& value) { SetStatus(std::move(value)); return *this;} /** *The status message.
*/ inline const Aws::String& GetStatusMessage() const{ return m_statusMessage; } /** *The status message.
*/ inline bool StatusMessageHasBeenSet() const { return m_statusMessageHasBeenSet; } /** *The status message.
*/ inline void SetStatusMessage(const Aws::String& value) { m_statusMessageHasBeenSet = true; m_statusMessage = value; } /** *The status message.
*/ inline void SetStatusMessage(Aws::String&& value) { m_statusMessageHasBeenSet = true; m_statusMessage = std::move(value); } /** *The status message.
*/ inline void SetStatusMessage(const char* value) { m_statusMessageHasBeenSet = true; m_statusMessage.assign(value); } /** *The status message.
*/ inline NotificationContext& WithStatusMessage(const Aws::String& value) { SetStatusMessage(value); return *this;} /** *The status message.
*/ inline NotificationContext& WithStatusMessage(Aws::String&& value) { SetStatusMessage(std::move(value)); return *this;} /** *The status message.
*/ inline NotificationContext& WithStatusMessage(const char* value) { SetStatusMessage(value); return *this;} private: Aws::String m_validationId; bool m_validationIdHasBeenSet = false; ValidationStatus m_status; bool m_statusHasBeenSet = false; Aws::String m_statusMessage; bool m_statusMessageHasBeenSet = false; }; } // namespace Model } // namespace SMS } // namespace Aws