/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { class UpdateMonitoringAlertResult { public: AWS_SAGEMAKER_API UpdateMonitoringAlertResult(); AWS_SAGEMAKER_API UpdateMonitoringAlertResult(const Aws::AmazonWebServiceResult& result); AWS_SAGEMAKER_API UpdateMonitoringAlertResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the monitoring schedule.

*/ inline const Aws::String& GetMonitoringScheduleArn() const{ return m_monitoringScheduleArn; } /** *

The Amazon Resource Name (ARN) of the monitoring schedule.

*/ inline void SetMonitoringScheduleArn(const Aws::String& value) { m_monitoringScheduleArn = value; } /** *

The Amazon Resource Name (ARN) of the monitoring schedule.

*/ inline void SetMonitoringScheduleArn(Aws::String&& value) { m_monitoringScheduleArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the monitoring schedule.

*/ inline void SetMonitoringScheduleArn(const char* value) { m_monitoringScheduleArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the monitoring schedule.

*/ inline UpdateMonitoringAlertResult& WithMonitoringScheduleArn(const Aws::String& value) { SetMonitoringScheduleArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the monitoring schedule.

*/ inline UpdateMonitoringAlertResult& WithMonitoringScheduleArn(Aws::String&& value) { SetMonitoringScheduleArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the monitoring schedule.

*/ inline UpdateMonitoringAlertResult& WithMonitoringScheduleArn(const char* value) { SetMonitoringScheduleArn(value); return *this;} /** *

The name of a monitoring alert.

*/ inline const Aws::String& GetMonitoringAlertName() const{ return m_monitoringAlertName; } /** *

The name of a monitoring alert.

*/ inline void SetMonitoringAlertName(const Aws::String& value) { m_monitoringAlertName = value; } /** *

The name of a monitoring alert.

*/ inline void SetMonitoringAlertName(Aws::String&& value) { m_monitoringAlertName = std::move(value); } /** *

The name of a monitoring alert.

*/ inline void SetMonitoringAlertName(const char* value) { m_monitoringAlertName.assign(value); } /** *

The name of a monitoring alert.

*/ inline UpdateMonitoringAlertResult& WithMonitoringAlertName(const Aws::String& value) { SetMonitoringAlertName(value); return *this;} /** *

The name of a monitoring alert.

*/ inline UpdateMonitoringAlertResult& WithMonitoringAlertName(Aws::String&& value) { SetMonitoringAlertName(std::move(value)); return *this;} /** *

The name of a monitoring alert.

*/ inline UpdateMonitoringAlertResult& WithMonitoringAlertName(const char* value) { SetMonitoringAlertName(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateMonitoringAlertResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateMonitoringAlertResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateMonitoringAlertResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_monitoringScheduleArn; Aws::String m_monitoringAlertName; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws