/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The configuration details for the predictor monitor.See Also:
* AWS
* API Reference
The name of the monitor resource.
*/ inline const Aws::String& GetMonitorName() const{ return m_monitorName; } /** *The name of the monitor resource.
*/ inline bool MonitorNameHasBeenSet() const { return m_monitorNameHasBeenSet; } /** *The name of the monitor resource.
*/ inline void SetMonitorName(const Aws::String& value) { m_monitorNameHasBeenSet = true; m_monitorName = value; } /** *The name of the monitor resource.
*/ inline void SetMonitorName(Aws::String&& value) { m_monitorNameHasBeenSet = true; m_monitorName = std::move(value); } /** *The name of the monitor resource.
*/ inline void SetMonitorName(const char* value) { m_monitorNameHasBeenSet = true; m_monitorName.assign(value); } /** *The name of the monitor resource.
*/ inline MonitorConfig& WithMonitorName(const Aws::String& value) { SetMonitorName(value); return *this;} /** *The name of the monitor resource.
*/ inline MonitorConfig& WithMonitorName(Aws::String&& value) { SetMonitorName(std::move(value)); return *this;} /** *The name of the monitor resource.
*/ inline MonitorConfig& WithMonitorName(const char* value) { SetMonitorName(value); return *this;} private: Aws::String m_monitorName; bool m_monitorNameHasBeenSet = false; }; } // namespace Model } // namespace ForecastService } // namespace Aws